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