export declare type ChatRooms = { id: string; chatStatusId?: number | null; type?: ChatRooms.type | null; requesterId?: number | null; createdBy?: number | null; empty: boolean | null; productId?: number | null; membersCount?: number | null; icon?: string | null; name?: string | null; webhookUrl?: string | null; jsonData?: (any[] | boolean | number | string) | null; createdAt: string; updatedAt: string; deletedAt?: string | null; }; export declare namespace ChatRooms { enum type { GROUP = "group", SUPORTE = "suporte", ONE_TO_ONE = "one-to-one", TEXT_CHANNEL = "text-channel", TEXT_CHANNEL_PRIVATE = "text-channel-private" } }