import { z } from 'zod'; export declare namespace KottiDrawer { const propsSchema: z.ZodObject<{ defaultWidth: z.ZodDefault>; disallowCloseOutside: z.ZodDefault; expandWidth: z.ZodDefault>; isWide: z.ZodDefault; }, "strip", z.ZodTypeAny, { defaultWidth: string | null; disallowCloseOutside: boolean; expandWidth: string | null; isWide: boolean; }, { defaultWidth?: string | null | undefined; disallowCloseOutside?: boolean | undefined; expandWidth?: string | null | undefined; isWide?: boolean | undefined; }>; type PropsInternal = z.output; type Props = z.input; }