import React from 'react'; declare type PageLayoutDefaults = {}; export declare const PageLayout: typeof PageLayoutRoot & { defaults: PageLayoutDefaults; }; declare type PageLayoutProps = React.DetailedHTMLProps, HTMLDivElement> & { topBarContent?: React.ReactNode; }; declare function PageLayoutRoot({ children, className, topBarContent, ...props }: PageLayoutProps): JSX.Element; export {};