import type { Path } from 'path-scurry'; export declare function getTarball(packageName: string, workingDirectory: string, { npmrc, debug }?: { npmrc?: string; debug?: boolean; }): Promise; export declare function getGlobMatches(globs: string[], cwd?: string): Promise; export declare function compareFiles(localFiles: Path[], publishedFiles: Path[], options?: { ignorePackageVersion?: boolean; verbose?: boolean; debug?: boolean; }): Promise;