import type { App } from 'vue'; import type { NotyOptions } from './types'; export declare function createNoty(): { (_ops?: Partial): () => void; install(vue: App): void; success(ops?: Partial): () => void; error(ops?: Partial): () => void; warning(ops?: Partial): () => void; info(ops?: Partial): () => void; };