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

export interface FormHeaderProps {
    verificationService: VerificationService;
    title: React.ReactNode;
    children?: React.ReactNode;
    fallbackLogo?: JSX.Element;
    classNameIdentifier?: string;
}
export declare const FormHeader: ({ verificationService, title, children, fallbackLogo, classNameIdentifier, }: FormHeaderProps) => React.JSX.Element;
