import type { Descriptor } from "@dpkit/core";
export declare function makeCkanApiRequest<T = Descriptor>(options: {
    ckanUrl: string;
    action: string;
    payload: Descriptor;
    upload?: {
        name: string;
        data: Blob;
    };
    apiKey?: string;
}): Promise<T>;
