import { VerificationService } from '../../lib/types/types';
interface FormFooterProps {
    verificationService: VerificationService;
    children?: any;
}
declare const FormFooterComponent: ({ verificationService, children }: FormFooterProps) => JSX.Element;
export { FormFooterComponent };
