import { DisableMode, LabelProps } from '../common/common'; import { DatePickerFieldProps } from '../datePickerField/DatePickerField'; /** * Component & its Props */ export interface Props { dateField: DatePickerFieldProps; label: LabelProps; additionalInfoLabel?: string; additionalPaymentInfoLabel?: string; additionalPaymentInfoLabelStyle?: React.CSSProperties; isDisabled?: DisableMode; isMasked?: boolean; isOptional?: boolean; protectedInfoText?: string; showThunderIcon?: boolean; style?: React.CSSProperties; } export declare function LabeledDatePickerField({ isDisabled, label, dateField, style, additionalInfoLabel, additionalPaymentInfoLabel, additionalPaymentInfoLabelStyle, showThunderIcon, protectedInfoText, isMasked, isOptional, }: Readonly): import("react/jsx-runtime").JSX.Element;