//#region src/packaged.d.ts /** * Compute the list of all files that will be part of the package if published * @param packageRoot - The path to the root of the package, eg.: . */ declare function computePublishedFiles(packageRoot: string): Promise; /** * Remove from the filesystem any file that will not be published * @param packageRoot - The path to the root of the package, eg.: . */ declare function removeNonPublishedFiles(packageRoot: string, opts?: { dryRun?: boolean; keep?: string[]; }): Promise<{ kept: string[]; removed: string[]; }>; //#endregion export { computePublishedFiles, removeNonPublishedFiles };