import type { Offsets } from './types'; export declare const CLASSES: { drawer: string; 'drawer--top': string; 'drawer--right': string; 'drawer--bottom': string; 'drawer--left': string; drawer__content: string; drawer__header: string; 'drawer__header-title': string; 'drawer__header-actions': string; drawer__body: string; drawer__footer: string; 'drawer__footer--left': string; 'drawer__footer--center': string; 'drawer__footer--right': string; }; export declare const DrawerContext: import("react").Context<{ id: string; onClose: () => void; onVisibleChange: (offsets: Offsets) => void; } | undefined>;