import z from 'zod'; /** * Creates a Zod schema for parsing boolean-like string values. * * This function returns a Zod schema that can parse string representations * of boolean values and transform them into actual boolean values. * * @returns A Zod schema for boolean-like string validation and transformation * * @example * ```ts * const boolSchema = Bool(); * boolSchema.parse('true'); // returns true * boolSchema.parse('1'); // returns true * boolSchema.parse('false'); // returns false * boolSchema.parse('0'); // returns false * ``` */ export declare const Bool: () => z.ZodType;