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;
