import * as React from 'react'; export interface PageContextProps { isManagedSidebar: boolean; onSidebarToggle: () => void; isSidebarOpen: boolean; width: number; height: number; getBreakpoint: (width: number | null) => 'default' | 'sm' | 'md' | 'lg' | 'xl' | '2xl'; getVerticalBreakpoint: (height: number | null) => 'default' | 'sm' | 'md' | 'lg' | 'xl' | '2xl'; } export declare const pageContextDefaults: PageContextProps; export declare const PageContext: React.Context; export declare const PageContextProvider: React.Provider; export declare const PageContextConsumer: React.Consumer; //# sourceMappingURL=PageContext.d.ts.map