import { GetCommentsResponse } from 'src/adapters/message'; import { Storage } from 'src/storage'; export declare function getMockedStorage(): Storage; export declare const createMessagesResponse: () => GetCommentsResponse.RootObject; export declare const createRoomResponse: () => { results: { comments: never[]; room: { avatar_url: string; chat_type: string; id: number; id_str: string; is_public_channel: boolean; last_comment_id: number; last_comment_id_str: string; last_comment_message: string; last_topic_id: number; last_topic_id_str: string; options: string; participants: ({ active: boolean; avatar_url: string; email: string; extras: { key: string; }; id: number; id_str: string; last_comment_read_id: number; last_comment_read_id_str: string; last_comment_received_id: number; last_comment_received_id_str: string; username: string; } | { active: boolean; avatar_url: string; email: string; extras: { key?: undefined; }; id: number; id_str: string; last_comment_read_id: number; last_comment_read_id_str: string; last_comment_received_id: number; last_comment_received_id_str: string; username: string; })[]; raw_room_name: string; room_name: string; room_total_participants: number; unique_id: string; unread_count: number; }; }; status: number; }; export declare const createGroupResponse: () => { results: { comments: never[]; room: { avatar_url: string; chat_type: string; id: number; id_str: string; is_public_channel: boolean; last_comment_id: number; last_comment_id_str: string; last_comment_message: string; last_topic_id: number; last_topic_id_str: string; options: string; participants: ({ active: boolean; avatar_url: string; email: string; extras: { role?: undefined; }; id: number; id_str: string; last_comment_read_id: number; last_comment_read_id_str: string; last_comment_received_id: number; last_comment_received_id_str: string; username: string; } | { active: boolean; avatar_url: string; email: string; extras: { role: string; }; id: number; id_str: string; last_comment_read_id: number; last_comment_read_id_str: string; last_comment_received_id: number; last_comment_received_id_str: string; username: string; })[]; raw_room_name: string; room_name: string; room_total_participants: number; unique_id: string; unread_count: number; }; }; status: number; }; export declare const createAddParticipantsResponse: () => { results: { participants_added: { active: boolean; avatar_url: string; email: string; extras: {}; id: number; id_str: string; last_comment_read_id: number; last_comment_read_id_str: string; last_comment_received_id: number; last_comment_received_id_str: string; username: string; }[]; }; status: number; }; export declare const createRemoveParticipantsResponse: () => { results: { participants_removed: string[]; }; status: number; }; export declare function createClearRoomResponse(): Record; export declare function createGetChannelResponse(): Record; export declare function createListParticipantsResponse(): Record; export declare function createGetRoomResponse(): Record; export declare function createRoomInfoResponse(): Record; export declare function createUserRoomsResponse(): Record; export declare function createUnreadCountResponse(): Record;