import { IDrawerContextProps } from './type';
interface IContextProps extends Omit<IDrawerContextProps, 'expanded'>, Required<Pick<IDrawerContextProps, 'expanded'>> {
    setExpanded: (value: ReadonlyArray<string>) => void;
}
export declare const DrawerContext: import("react").Context<IContextProps>;
export declare const useDrawerContext: () => IContextProps;
export {};
