import { z } from 'zod'; export declare namespace KottiLine { enum Position { CENTER = "center", LEFT = "left", RIGHT = "right" } const propsSchema: z.ZodObject<{ isInteractive: z.ZodDefault; position: z.ZodDefault, z.ZodNativeEnum]>>; text: z.ZodDefault>; }, "strip", z.ZodTypeAny, { text: string | null; isInteractive: boolean; position: "left" | "right" | "center" | Position; }, { isInteractive?: boolean | undefined; position?: "left" | "right" | "center" | Position | undefined; text?: string | null | undefined; }>; type Props = z.input; type PropsInternal = z.output; }