UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

15 lines (14 loc) 575 B
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; mode: 'fixed' | 'static'; } export declare const AppShellProvider: ({ children, value }: { value: AppShellContext; children: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element, useAppShellContext: () => AppShellContext;