import { default as React } from 'react'; import { VerificationService } from '../../lib/types/types'; export interface FormFooterProps { verificationService?: VerificationService; children?: React.ReactNode; showShield?: boolean; } export declare const FormFooterComponent: ({ children, showShield }: FormFooterProps) => import("react/jsx-runtime").JSX.Element;