/** * Load a package from a Github repository * @param props Object containing the URL to the Github repository * @returns Package object */ export declare function loadPackageFromGithub(repoUrl: string, options?: { apiKey?: 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; }>;