/**
 * Represents an image with dimensions and source URL
 */
export declare class Image {
    readonly width: number;
    readonly height: number;
    readonly source_url: string;
    constructor(data: any);
}
