import type { ThemingProps } from "../../types"; import type { DrawerTheme } from "./Drawer"; export interface DrawerContextValue extends ThemingProps { id?: string; isOpen?: boolean; onClose?: () => void; } export declare const DrawerContext: import("react").Context; export declare function useDrawerContext(): DrawerContextValue;