import type { FieldInputRef, FieldReturnKey } from './FiatFormFieldRow'; export interface FiatKycPhoneFieldProps { /** The form's value: E.164, or empty. */ value: string; /** The buyer's region, which the chip opens on when the value names none. */ defaultCountry?: string; editable: boolean; autoFocus: boolean; returnKey?: FieldReturnKey; inputRef?: FieldInputRef; onChangeValue: (value: string) => void; onBlur: () => void; } /** * The KYC form's phone round, drawn as the session flow draws its phone: the * calling code chosen from the country list on the left, the rest typed on * the right, and E.164 written to the form. A plain box that asked for the * code to be typed left a local number failing the round's own rule. */ export declare function FiatKycPhoneField({ value, defaultCountry, editable, autoFocus, returnKey, inputRef, onChangeValue, onBlur, }: FiatKycPhoneFieldProps): import("react").JSX.Element; //# sourceMappingURL=FiatKycPhoneField.d.ts.map