UNPKG

omnipay-savings-sdk

Version:

Omnipay Savings SDK

22 lines (21 loc) 881 B
import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { ScreenParams } from '../../navigation/app'; import { SavingsCategoryType, SuggestedPlansOptionsType } from '../../utils'; type Props = { title: string; goBack: () => void; navigate: <T extends keyof ScreenParams>(name: T, params?: ScreenParams[T]) => void; savingsOption: SavingsCategoryType; suggestedPlan?: SuggestedPlansOptionsType | null; }; export declare const SwitchFormInput: (props: { title: string; onPress: () => void; onValueChange: () => void; check: boolean; setCheck: React.Dispatch<React.SetStateAction<boolean>>; containerStyle?: StyleProp<ViewStyle>; }) => import("react/jsx-runtime").JSX.Element; declare const SaveAsYouCollectForm: (props: Props) => import("react/jsx-runtime").JSX.Element; export default SaveAsYouCollectForm;