/// export type ScrollAreaComponent = React.FC; interface DrawerContext { scrollAreaComponent: ScrollAreaComponent; } export declare const DrawerProvider: ({ children, value }: { value: DrawerContext; children: import("react").ReactNode; }) => import("react").JSX.Element, useDrawerContext: () => DrawerContext; export {};