export interface FiatChoiceListProps { value: string; options: readonly { id: string; labelFallback: string; }[]; editable: boolean; invalid: boolean; onChange: (value: string) => void; } /** * The questionnaire's answers, drawn on the page itself (2475:9039). * * The country chooser keeps its sheet, since a list of every country is too * long to stand on a page. A questionnaire is nine answers, so the design * spends the page on them rather than a row that opens a sheet over it. */ export declare function FiatChoiceList({ value, options, editable, invalid, onChange, }: FiatChoiceListProps): import("react").JSX.Element; //# sourceMappingURL=FiatChoiceList.d.ts.map