import { z } from 'zod'; export declare namespace KottiCard { enum ImagePosition { BOTTOM = "bottom", MIDDLE = "middle", TOP = "top" } const propsSchema: z.ZodObject<{ component: z.ZodDefault; imgPosition: z.ZodDefault, z.ZodNativeEnum]>>; imgUrl: z.ZodDefault>; isImgLoading: z.ZodDefault; isTextLoading: z.ZodDefault; primaryActionDataTest: z.ZodOptional; primaryActionLabel: z.ZodDefault>; secondaryActionDataTest: z.ZodOptional; secondaryActionLabel: z.ZodDefault>; }, "strip", z.ZodTypeAny, { component: string; imgPosition: "bottom" | "middle" | "top" | ImagePosition; imgUrl: string | null; isImgLoading: boolean; isTextLoading: boolean; primaryActionLabel: string | null; secondaryActionLabel: string | null; primaryActionDataTest?: string | undefined; secondaryActionDataTest?: string | undefined; }, { component?: string | undefined; imgPosition?: "bottom" | "middle" | "top" | ImagePosition | undefined; imgUrl?: string | null | undefined; isImgLoading?: boolean | undefined; isTextLoading?: boolean | undefined; primaryActionDataTest?: string | undefined; primaryActionLabel?: string | null | undefined; secondaryActionDataTest?: string | undefined; secondaryActionLabel?: string | null | undefined; }>; type Props = z.input; type PropsInternal = z.output; }