import { App } from 'vue'; import { TdDrawerProps } from './type'; type DrawerOptions = Omit; export declare function DrawerPlugin(options: DrawerOptions): { destroy(): void; hide(): void; show(): void; update(options: DrawerOptions): void; }; export declare namespace DrawerPlugin { var install: (app: App) => void; } export default DrawerPlugin;