import { PartContentType, XboxMessage } from '../..'; import { GatewayImageContentPart } from '../../ws'; import { BasePart } from './BasePart'; export type APIImagePart = { contentType: string; version: number; attachmentId: string; filetype: string; sizeInBytes: number; hash: string; height: number; width: number; }; export declare class ImagePart extends BasePart { type: PartContentType.Image; id: string; url: string; hash: string; height: number; width: number; size: number; filetype: string; constructor(client: XboxMessage, data: GatewayImageContentPart); }