import { z } from 'zod'; export declare namespace KottiLabel { const valueSchema: z.ZodNullable; type Value = z.output; const propsSchema: z.ZodObject<{ label: z.ZodDefault>; helpText: z.ZodDefault>; helpDescription: z.ZodDefault>; inputId: z.ZodDefault>; isRequired: z.ZodDefault; validationState: z.ZodDefault>; }, "strip", z.ZodTypeAny, { label: string | null; helpText: string | null; inputId: string | null; helpDescription: string | null; isRequired: boolean; validationState: "error" | "success" | "warning" | "empty"; }, { label?: string | null | undefined; helpText?: string | null | undefined; helpDescription?: string | null | undefined; inputId?: string | null | undefined; isRequired?: boolean | undefined; validationState?: "error" | "success" | "warning" | "empty" | undefined; }>; type Props = z.input; type PropsInternal = z.output; }