import { DisableMode } from '../common/common'; import { DatePickerFieldWithRadioOptionsProps } from '../datePickerWithRadioOptions/DatePickerWithRadioOptions'; /** * Component & its Props */ export interface Props { dateField: DatePickerFieldWithRadioOptionsProps; label: { label: string; /** Backend field-help code; shows the label's info tooltip when copy exists. */ fieldCode?: string; width?: number; }; additionalInfoLabel?: string; additionalPaymentInfoLabel?: string; isDisabled?: DisableMode; isMasked?: boolean; protectedInfoText?: string; style?: React.CSSProperties; } export declare function LabeledDatePickerWithRadioOptionsField({ label, dateField, isDisabled, style, additionalInfoLabel, additionalPaymentInfoLabel, protectedInfoText, isMasked, }: Readonly): import("react/jsx-runtime").JSX.Element;