import { File } from '@airgram-dev/core'; /** Photo description */ export declare class PhotoSizeBaseModel { _: 'photoSize'; /** Thumbnail type (see https://core.telegram.org/constructor/photoSize) */ type: string; /** Information about the photo file */ photo: File; /** Photo width */ width: number; /** Photo height */ height: number; }