/** A chat was pinned or unpinned */ export declare class UpdateChatIsPinnedBaseModel { _: 'updateChatIsPinned'; /** Chat identifier */ chatId: number; /** New value of is_pinned */ isPinned: boolean; /** New value of the chat order */ order: string; }