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