export interface FiatChoiceFieldProps { label: string; title: string; value: string; options: readonly { id: string; labelFallback: string; }[]; editable: boolean; invalid: boolean; grouped?: boolean; /** * The options are ISO 3166-1 alpha-2 codes. Every country on earth is * further than a plain list can be read through, so the drawer is the * searchable list with the index rail the phone flow already draws. */ country?: boolean; onChange: (value: string) => void; } /** KYC R2 selection drawer, shared by country and provider questionnaires. */ export declare function FiatChoiceField({ label, title, value, options, editable, invalid, grouped, country, onChange, }: FiatChoiceFieldProps): import("react").JSX.Element; //# sourceMappingURL=FiatChoiceField.d.ts.map