import type React from "react"; import type { LabelProps } from "./Label"; export interface FieldLabelProps extends LabelProps { hint?: string; labelText: string; requirementText?: string; helpText?: React.ReactNode; } export declare const FieldLabelDefaultProps: { children: any; requirementText: any; helpText: any; id: any; };