export interface QuickAmountOption { /** The amount the chip enters, as a decimal string (e.g. `'50'`). */ value: string; /** What the chip shows (e.g. `'$50'`). */ label: string; } export interface QuickAmountsRowProps { options: QuickAmountOption[]; onSelect: (value: string) => void; /** Makes every shortcut non-interactive. */ disabled?: boolean; } /** * The recommended-amount shortcuts shown while the deposit amount is empty. */ export declare const QuickAmountsRow: import("react").MemoExoticComponent<({ options, onSelect, disabled, }: QuickAmountsRowProps) => import("react").JSX.Element>; //# sourceMappingURL=QuickAmountsRow.d.ts.map