import { z } from 'zod'; export declare namespace KottiValueLabel { const validationSchema: z.ZodUnion<[z.ZodObject<{ text: z.ZodNullable; type: z.ZodLiteral<"error">; }, "strip", z.ZodTypeAny, { type: "error"; text: string | null; }, { type: "error"; text: string | null; }>, z.ZodObject<{ text: z.ZodNullable; type: z.ZodLiteral<"success">; }, "strip", z.ZodTypeAny, { type: "success"; text: string | null; }, { type: "success"; text: string | null; }>, z.ZodObject<{ text: z.ZodNullable; type: z.ZodLiteral<"warning">; }, "strip", z.ZodTypeAny, { type: "warning"; text: string | null; }, { type: "warning"; text: string | null; }>]>; const propsSchema: z.ZodObject<{ dataTest: z.ZodDefault>; label: z.ZodDefault>; isLoading: z.ZodDefault; helpText: z.ZodDefault>; helpDescription: z.ZodDefault>; isUnset: z.ZodDefault; validation: z.ZodDefault; type: z.ZodLiteral<"error">; }, "strip", z.ZodTypeAny, { type: "error"; text: string | null; }, { type: "error"; text: string | null; }>, z.ZodObject<{ text: z.ZodNullable; type: z.ZodLiteral<"success">; }, "strip", z.ZodTypeAny, { type: "success"; text: string | null; }, { type: "success"; text: string | null; }>, z.ZodObject<{ text: z.ZodNullable; type: z.ZodLiteral<"warning">; }, "strip", z.ZodTypeAny, { type: "warning"; text: string | null; }, { type: "warning"; text: string | null; }>]>>>; value: z.ZodDefault>>; }, "strip", z.ZodTypeAny, { dataTest: string | null; validation: { type: "error"; text: string | null; } | { type: "success"; text: string | null; } | { type: "warning"; text: string | null; } | null; value: string | number | null; label: string | null; isLoading: boolean; helpText: string | null; helpDescription: string | null; isUnset: boolean; }, { dataTest?: string | null | undefined; label?: string | null | undefined; isLoading?: boolean | undefined; helpText?: string | null | undefined; helpDescription?: string | null | undefined; isUnset?: boolean | undefined; validation?: { type: "error"; text: string | null; } | { type: "success"; text: string | null; } | { type: "warning"; text: string | null; } | null | undefined; value?: string | number | null | undefined; }>; type Props = z.input; type PropsInternal = z.output; type Translations = { notSet: string; }; }