import { ScreenParams } from '../../navigation/app';
import { SavingsCategoryType, SuggestedPlansOptionsType } from '../../utils';
import { SavingsDetailType } from '../../utils/types';
type Props = {
    title: string;
    goBack: () => void;
    navigate: <T extends keyof ScreenParams>(name: T, params?: ScreenParams[T]) => void;
    replace: <T extends keyof ScreenParams>(name: T, params?: ScreenParams[T]) => void;
    savingsOption: SavingsCategoryType;
    suggestedPlan?: SuggestedPlansOptionsType | null;
    editMode?: boolean;
    existingSavingsData?: SavingsDetailType;
};
declare const OtherSavingsForm: (props: Props) => import("react/jsx-runtime").JSX.Element;
export default OtherSavingsForm;
