UNPKG

omnipay-savings-sdk

Version:

Omnipay Savings SDK

13 lines (12 loc) 396 B
import React from 'react'; import { ScrollView } from 'react-native'; interface SavingsFormLayoutProps { title: string; onBack: () => void; onSubmit: () => void; children: React.ReactNode; scrollViewRef?: React.RefObject<ScrollView | null>; suggestedPlanName?: string; } declare const SavingsFormLayout: React.FC<SavingsFormLayoutProps>; export default SavingsFormLayout;