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