import * as z from "zod"; export declare const LabeledFieldHeaderPropsSchema: z.ZodObject<{ label: z.ZodString; required: z.ZodOptional; htmlFor: z.ZodOptional; "data-testid": z.ZodOptional; }, "strip", z.ZodTypeAny, { label: string; required?: boolean | undefined; htmlFor?: string | undefined; "data-testid"?: string | undefined; }, { label: string; required?: boolean | undefined; htmlFor?: string | undefined; "data-testid"?: string | undefined; }>; export type LabeledFieldHeaderProps = z.infer;