import * as Core from 'cloudflare/core';
import { APIResource } from 'cloudflare/resource';
import { type Response } from 'cloudflare/_shims/index';
import * as BlobsAPI from 'cloudflare/resources/images/v1/blobs';
export declare class Blobs extends APIResource {
    /**
     * Fetch base image. For most images this will be the originally uploaded file. For
     * larger images it can be a near-lossless version of the original.
     */
    get(imageId: string, params: BlobGetParams, options?: Core.RequestOptions): Core.APIPromise<Response>;
}
export interface BlobGetParams {
    /**
     * Account identifier tag.
     */
    account_id: string;
}
export declare namespace Blobs {
    export import BlobGetParams = BlobsAPI.BlobGetParams;
}
//# sourceMappingURL=blobs.d.ts.map