import { Observable } from 'rxjs'; import { UserColorHue, UserColorManager, UserColor } from './types'; export interface UserColorManagerOptions { anonymousColor?: UserColor; userStore?: { me: Observable<{ id: string; } | null>; }; colors?: Readonly>; currentUserColor?: UserColorHue; } export declare function createUserColorManager(options?: UserColorManagerOptions): UserColorManager; //# sourceMappingURL=manager.d.ts.map