import { Plugin, AppContext } from 'vue'; import { DrawerMethod } from './type'; export type DrawerPluginType = Plugin & DrawerMethod & { _context?: AppContext; }; export declare const DrawerPlugin: DrawerPluginType; export default DrawerPlugin;