import type { Image, ImageRaw } from "../..";
import type { BeeClient } from "../../clients";
interface ImageReaderOptions {
    beeClient: BeeClient;
}
export declare class ImageReader {
    imageRaw: ImageRaw;
    image: Image;
    constructor(image: ImageRaw | Image, opts: ImageReaderOptions);
    static getBestImageUrl(image: Image, width?: number): string;
}
export {};
//# sourceMappingURL=reader.d.ts.map