import { ClassNames } from '../Drawer.types';
export type ContextValue = {
    classNames?: ClassNames;
    headerId?: string;
};
export declare const DrawerContext: import('react').Context<ContextValue>;
export declare const useDrawerContext: () => ContextValue;
