import { DrawerProps } from './types'; interface DrawerContextValue { dismissible?: DrawerProps["dismissible"]; height?: DrawerProps["height"]; } declare const DrawerContext: import('react').Context; declare const useDrawer: () => DrawerContextValue; export { DrawerContext, useDrawer };