import type { Package } from "@dpkit/core"; /** * Save a package to a Github repository * @param options Object containing the package to save and Github details * @returns Object with the repository URL */ export declare function savePackageToGithub(dataPackage: Package, options: { apiKey: string; repo: string; org?: string; }): Promise<{ path: string; repoUrl: string; }>;