export interface TarballComposition {
    ext: Set<string>;
    size: number;
    files: string[];
}
export declare function getTarballComposition(tarballDir: string): Promise<TarballComposition>;
//# sourceMappingURL=getTarballComposition.d.ts.map