import React from 'react'; import { Currency as CurrencyEnum } from '../lib/graphql/types/v2/graphql'; export declare const OTHER_AMOUNT_KEY = "other"; type StyledAmountPickerProps = { currency: CurrencyEnum; value?: number | string; onChange?: (value: string | number) => void; presets?: number[]; }; /** * A money amount picker that shows a button set to pick between presets. */ declare const StyledAmountPicker: ({ presets, currency, value, onChange }: StyledAmountPickerProps) => React.JSX.Element; export default StyledAmountPicker;