Variable OtherwiseContentSupplier

OtherwiseContentSupplier: ZodFunction<
    ZodTuple<
        [
            ZodType<Message<boolean>, ZodTypeDef, Message<boolean>>,
            ZodObject<
                {
                    failure: ZodNullable<ZodType<Flag<Fail>, ZodTypeDef, Flag<Fail>>>;
                    phrase: ZodString;
                },
                "strip",
                ZodTypeAny,
                { failure: null
                | Flag<Fail>; phrase: string },
                { failure: null | Flag<Fail>; phrase: string },
            >,
        ],
        ZodUnknown,
    >,
    ZodUnion<
        [
            ZodUnion<
                [
                    ZodString,
                    ZodType<MessagePayload, ZodTypeDef, MessagePayload>,
                    ZodRecord<ZodString, ZodAny>,
                ],
            >,
            ZodPromise<
                ZodUnion<
                    [
                        ZodString,
                        ZodType<MessagePayload, ZodTypeDef, MessagePayload>,
                        ZodRecord<ZodString, ZodAny>,
                    ],
                >,
            >,
        ],
    >,
>