import { ArchiveChatCommand, RestoreChatCommand } from './ChatCommands'; import { IChatRepository } from '../../../Domain/IRepository/IChatRepository'; export declare class ArchiveChatCommandHandler { private chatRepository; constructor(chatRepository: IChatRepository); execute(command: ArchiveChatCommand): Promise; } export declare class RestoreChatCommandHandler { private chatRepository; constructor(chatRepository: IChatRepository); execute(command: RestoreChatCommand): Promise; } //# sourceMappingURL=ChatArchiveCommandHandlers.d.ts.map