import { type FiatFormFieldRowProps } from './FiatFormFieldRow'; import type { NativeDatePicker } from './nativeDatePicker'; interface KycFieldControlProps extends FiatFormFieldRowProps { ssnDigits?: 4 | 9; /** The buyer's region, which the phone field's calling code opens on. */ defaultCountry?: string; Picker?: NativeDatePicker; /** The step's frame, which the wheel centres itself on. */ frame?: { height: number; top: number; }; isDatePickerLoading?: boolean; /** The page draws its answers itself, rather than behind a chooser. */ inlineChoice?: boolean; } export declare function FiatKycFieldControl({ caption, ...props }: KycFieldControlProps & { /** Named above the control, where the page's own line does not name it. */ caption?: string; }): import("react").JSX.Element; export {}; //# sourceMappingURL=FiatKycFieldControl.d.ts.map