import type { DrawerRequestCloseHandler } from '@splunk/react-ui/Drawer'; export interface DrawerContext { divider?: 'header' | 'footer' | 'both' | 'none'; titleId?: string; subtitleId?: string; onRequestClose?: DrawerRequestCloseHandler; onSubtitleRender?: (hasSubtitle: boolean) => void; onTitleRender?: (hasTitle: boolean) => void; } export declare const DrawerContext: import("react").Context; export default DrawerContext;