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

export interface LayoutProps {
    layout: VerificationFormLayout;
    children: React.ReactNode;
    verificationService?: VerificationService;
    renderAsLandingPage?: boolean;
}
export declare const Layout: React.FC<LayoutProps>;
