/** * Component & its Props */ export interface Props { label: string; bottomSubtext?: string; htmlFor?: string; style?: React.CSSProperties; topSubtext?: string; } export declare function LabelWithSubtext({ label, htmlFor, style, topSubtext, bottomSubtext, }: Props): import("react/jsx-runtime").JSX.Element;