/** * Load a package from a CKAN instance * @param props Object containing the URL to the CKAN package * @returns Package object and cleanup function */ export declare function loadPackageFromCkan(datasetUrl: string): Promise<{ [x: `${string}:${string}`]: any; $schema?: string; resources: import("@dpkit/core").Resource[]; name?: string; title?: string; description?: string; homepage?: string; version?: string; licenses?: import("@dpkit/core").License[]; contributors?: import("@dpkit/core").Contributor[]; sources?: import("@dpkit/core").Source[]; keywords?: string[]; created?: string; image?: string; }>;