omnipay-savings-sdk
Version:
Omnipay Savings SDK
16 lines (15 loc) • 717 B
TypeScript
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 FlexibleSavingsForm: (props: Props) => import("react/jsx-runtime").JSX.Element;
export default FlexibleSavingsForm;