import './style'; export type { DrawerProps } from './Drawer'; export * from './type'; export declare const Drawer: import("react").FC; export declare const drawer: (options: any) => { hide: () => any; show?: undefined; update?: undefined; destroy?: undefined; } | { show: () => void; hide: () => void; update(updateOptions: import("./type").DrawerOptions): void; destroy: () => void; }; export declare const DrawerPlugin: (options: any) => { hide: () => any; show?: undefined; update?: undefined; destroy?: undefined; } | { show: () => void; hide: () => void; update(updateOptions: import("./type").DrawerOptions): void; destroy: () => void; }; export default Drawer;