import Record from 'dataclass'; import { dialog } from '@dlghq/dialog-api'; declare class FullUser extends Record { id: number; about: string | null; preferredLanguages: Array; timeZone: string | null; isBlocked: boolean; customProfile: string | null; static from(api: dialog.FullUser): FullUser; toString(): string; } export default FullUser;