import React from 'react';
import type { JSX } from 'react';
interface PageLayoutProps {
    sidebar?: React.ReactNode;
}
export declare function PageLayout({ sidebar, children, }: React.PropsWithChildren<PageLayoutProps>): JSX.Element;
export {};
