import { SavingsCategoryType } from '../../utils';
type Props = {
    option: SavingsCategoryType;
    onPress: (option: SavingsCategoryType) => void;
    selected: SavingsCategoryType | null;
    position: number;
    range?: string;
};
export declare const getCategoryIcon: (name: string) => any;
declare const SavingsCategory: (props: Props) => import("react/jsx-runtime").JSX.Element;
export default SavingsCategory;
