UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

12 lines (11 loc) 509 B
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;