import React from 'react'; declare type Props = { onSubmit: () => void; onCancel?: () => void; disabled: boolean; submitText?: string; cancelText?: string; }; export declare const OnboardingSubmit: React.FC; export {};