import type { DrawerMethod } from './type';
export declare type DrawerPluginType = Vue.PluginObject<undefined> & DrawerMethod;
export declare const DrawerPlugin: DrawerPluginType;
export default DrawerPlugin;
declare module 'vue/types/vue' {
    interface Vue {
        $drawer: DrawerMethod;
    }
}
