import * as z from 'zod'; /** * Represents the localParam */ export declare const cardSchema: z.ZodObject<{ icon: z.ZodString; text: z.ZodString; value: z.ZodString; }, "strip", z.ZodTypeAny, { value: string; icon: string; text: string; }, { value: string; icon: string; text: string; }>; export declare const localParamSchema: z.ZodObject<{ fullWidth: z.ZodDefault; description: z.ZodOptional; cards: z.ZodArray, "many">; }, "strip", z.ZodTypeAny, { fullWidth: boolean; cards: { value: string; icon: string; text: string; }[]; description?: string | undefined; }, { cards: { value: string; icon: string; text: string; }[]; fullWidth?: boolean | undefined; description?: string | undefined; }>; export type CardSchemaInternal = z.infer; export type LocalParamInternal = z.infer; export type LocalParam = z.input; //# sourceMappingURL=types.d.ts.map