import { type DrawerPanelHandlingProps } from '../../types'; export type DrawerContextProps = { id: string; } & DrawerPanelHandlingProps; declare const DrawerContext: React.Context; declare const DrawerProvider: React.Provider; declare const DrawerConsumer: React.Consumer; declare const useDrawerContext: () => DrawerContextProps; export default DrawerContext; export { DrawerProvider, DrawerConsumer, useDrawerContext };