import { FC, ReactNode } from 'react';
declare type PageWithSidebarProps = {
    sidebar: ReactNode;
    sidebarClassName?: string;
    children: ReactNode;
    currentBreakpoint: string;
};
export declare const PageWithSidebarNoBreakpoints: FC<PageWithSidebarProps>;
export declare const PageWithSidebar: any;
export {};
