/** * ```js * import { createRoom } from '@amityco/ts-sdk' * const created = await createRoom({ title: 'my room', 'thumbnailFileId': fileId }) * ``` * * Creates an {@link Amity.Room} * * @param bundle The data necessary to create a new {@link Amity.Room} * @returns The newly created {@link Amity.Room} * * @category Room API * @async */ export declare const createRoom: (bundle: { title: string; thumbnailFileId?: string; description?: string; metadata?: Record; liveChatEnabled?: boolean; parentRoomId?: string; type?: Amity.RoomType; }) => Promise>; //# sourceMappingURL=createRoom.d.ts.map