import type { RxCollection, RxDatabase } from '../../index.d.ts'; import type { RxWebMCPPlugin, WebMCPOptions, WebMCPLogEvent } from '../../types/plugins/webmcp.d.ts'; import { Subject } from 'rxjs'; export declare function registerWebMCPDatabase(this: RxDatabase, options?: WebMCPOptions): { error$: Subject; log$: Subject; }; export declare function registerWebMCPCollection(this: RxCollection, options?: WebMCPOptions): { error$: Subject; log$: Subject; }; export declare const RxDBWebMCPPlugin: RxWebMCPPlugin;