import { App } from 'vue'; import { LazyComponent } from './lazy-component'; import { LazyOptions } from './types'; export * from './hooks'; export { LazyComponent }; export type { LazyComponentProps } from './types'; declare const _default: { /** * install plugin * * @param {App} Vue * @param {LazyOptions} options */ install(Vue: App, options?: LazyOptions): void; }; export default _default;