import { Ref, InjectionKey } from 'vue'; import type { MergedTheme } from '../../_mixins'; import type { DrawerTheme } from '../styles'; export declare type DrawerBodyInjection = Ref | null; export declare const drawerBodyInjectionKey: InjectionKey; export interface DrawerInjection { isMountedRef: Ref; mergedThemeRef: Ref>; mergedClsPrefixRef: Ref; doUpdateShow: (show: boolean) => void; } export declare const drawerInjectionKey: InjectionKey;