import { ReactElement, ReactNode } from 'react';
export interface MainLayoutProps {
    title: string;
    children: ReactNode;
}
export declare const MainLayout: ({ title, children, }: MainLayoutProps) => ReactElement;
