import { App } from 'vue'; declare const VcNotifySymbol: symbol; declare const NotifyService: { add: (message: unknown) => void; removeGroup: (group: string) => void; removeAllGroups: () => void; }; export declare const notify: { add(message: unknown): void; removeGroup(group: string): void; removeAllGroups(): void; }; export { VcNotifySymbol, NotifyService }; declare module '@vue/runtime-core' { interface ComponentCustomProperties { $notify: typeof notify; } } declare const _default: { install: (app: App) => void; }; export default _default;