import { z } from 'zod'; export declare namespace KottiModal { enum Size { EXTRA_LARGE = "xl", LARGE = "lg", MEDIUM = "md", SMALL = "sm" } const propsSchema: z.ZodObject<{ isOpen: z.ZodDefault; preventCloseOutside: z.ZodDefault; showCloseButton: z.ZodDefault; size: z.ZodDefault, z.ZodNativeEnum]>>; title: z.ZodDefault>; }, "strip", z.ZodTypeAny, { title: string | null; size: "lg" | "md" | "sm" | "xl" | Size; isOpen: boolean; preventCloseOutside: boolean; showCloseButton: boolean; }, { isOpen?: boolean | undefined; preventCloseOutside?: boolean | undefined; showCloseButton?: boolean | undefined; size?: "lg" | "md" | "sm" | "xl" | Size | undefined; title?: string | null | undefined; }>; type Props = z.input; type PropsInternal = z.output; }