@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
14 lines (13 loc) • 545 B
TypeScript
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: React.ReactNode;
}) => import("react/jsx-runtime").JSX.Element, useAppShellContext: () => AppShellContext;