import type { Package } from "@dpkit/core";
export declare function savePackage(dataPackage: Package, options: {
    target: string;
    withRemote?: boolean;
}): Promise<void | {
    path?: string;
}>;
