import type { Package } from "@dpkit/core";
/**
 * Save a package to Zenodo
 * @param options Object containing the package to save and Zenodo API details
 * @returns Object with the deposit URL and DOI
 */
export declare function savePackageToZenodo(dataPackage: Package, options: {
    sandbox?: boolean;
    apiKey: string;
}): Promise<{
    path: string;
    datasetUrl: string;
}>;
