import type { Provider } from '@lexical/yjs'; import type { Doc } from 'yjs'; export interface CollaborationPluginProps { id: string; providerFactory: (id: string, yjsDocMap: Map) => Provider; shouldBootstrap: boolean; username?: string; cursorColor?: string; clientType?: 'human' | 'agent'; agentModel?: string; } export declare function CollaborationPlugin({ id, providerFactory, shouldBootstrap, username, cursorColor, clientType, agentModel, }: CollaborationPluginProps): import("react").JSX.Element; //# sourceMappingURL=CollaborationPlugin.d.ts.map