import { NFTROOM } from '../../../../models/NFTROOM'; interface State { [roomId: string]: { roomId: string; roomDetails: NFTROOM; verified: boolean; special: boolean; membersCount: number; enrichedStrategies: any; requirements: any[]; }; } export declare function RoomReducer(state: State, action: { type: string; payload: any; }): State; export {};