import { UserProfileToSend } from '../../../../models/userProfile/userProfile'; interface State { [roomId: string]: { [userId: string]: UserProfileToSend; }; } export declare function UsersProfileReducer(state: State, action: { type: string; payload: any; }): { [x: string]: any; }; export {};