import React from "react"; export type DrawerContextValue = { noCloseIcon?: boolean; onClose?(): void; }; export declare const DrawerContext: React.Context; export declare function useDrawerContext(): DrawerContextValue;