import { GetStylesApi, MantineRadius } from '../../core'; import type { DrawerRootFactory } from './DrawerRoot'; export type ScrollAreaComponent = React.FC; export interface DrawerContextValue { scrollAreaComponent: ScrollAreaComponent | undefined; getStyles: GetStylesApi; radius: MantineRadius | undefined; } export declare const DrawerProvider: import("react").Context, useDrawerContext: () => DrawerContextValue;