import React from 'react';
export interface LayoutProps {
    /**
     * The content to display inside the layout container.
     */
    children: React.ReactNode;
    /**
     * True if the main content should be full width.
     */
    fullWidthContainer?: boolean;
    /**
     * Main content size.
     */
    mainContentSize?: 'small' | 'medium' | 'large';
}
/**
 * Creates a generic layout to be reused on pages, including Header, main content
 * and footer.
 */
export declare const Layout: ({ children, fullWidthContainer, mainContentSize }: LayoutProps) => JSX.Element;
