import { GetStylesApi } from '../../core';
import type { AppShellFactory } from './AppShell';
export interface AppShellContextValue {
    getStyles: GetStylesApi<AppShellFactory>;
    withBorder: boolean | undefined;
    zIndex: string | number | undefined;
    disabled: boolean | undefined;
    offsetScrollbars: boolean | undefined;
    mode: 'fixed' | 'static';
}
export declare const AppShellProvider: import("react").Context<AppShellContextValue | null>, useAppShellContext: () => AppShellContextValue;
