import type { Image } from "../..";
import type { Reference } from "../../clients";
export type ImageDeserializerOptions = {
    /** Base path reference */
    reference?: Reference;
};
export declare class ImageDeserializer {
    private beeUrl;
    constructor(beeUrl: string);
    deserialize(item: object, opts?: ImageDeserializerOptions): Image;
}
//# sourceMappingURL=deserializer.d.ts.map