import { GetStylesApi } from '../../core';
import type { AppShellFactory } from './AppShell';
export interface AppShellContext {
    getStyles: GetStylesApi<AppShellFactory>;
    withBorder: boolean | undefined;
    zIndex: string | number | undefined;
    disabled: boolean | undefined;
    offsetScrollbars: boolean | undefined;
}
export declare const AppShellProvider: ({ children, value }: {
    value: AppShellContext;
    children: import("react").ReactNode;
}) => import("react").JSX.Element, useAppShellContext: () => AppShellContext;
