import { default as React } from 'react';
import { VerificationService } from '../../lib/types/types';

export interface FormFooterProps {
    verificationService: VerificationService;
    children?: React.ReactNode;
    showShield?: boolean;
}
declare const FormFooterComponent: ({ verificationService, children, showShield, }: FormFooterProps) => React.JSX.Element;
export { FormFooterComponent };
