import { FC } from 'react';
interface Props {
    children: JSX.Element;
    logo?: string;
    description?: string;
    title?: string;
}
export declare const Body: FC<Props>;
export {};
