import { Chat } from '../types'; export declare class ChatBase implements Chat { id: number; type: string; title: string; username: string; first_name: string; last_name: string; is_forum: boolean; }