import { StatsFile } from '../types'; /** * Normalize all paths to be compatible with current operating system */ declare function normalizeStats(stats: StatsFile, type: 'load' | 'write'): Readonly<{ fileManager?: Readonly<{ directories?: readonly string[] | undefined; files?: Readonly<{ [key: string]: string; }> | undefined; }> | undefined; packageJson?: import("../types").PackageJson | undefined; }>; declare namespace normalizeStats { var load: typeof load; var write: typeof write; } declare function load(stats: StatsFile): Readonly<{ fileManager?: Readonly<{ directories?: readonly string[] | undefined; files?: Readonly<{ [key: string]: string; }> | undefined; }> | undefined; packageJson?: import("../types").PackageJson | undefined; }>; declare function write(stats: StatsFile): Readonly<{ fileManager?: Readonly<{ directories?: readonly string[] | undefined; files?: Readonly<{ [key: string]: string; }> | undefined; }> | undefined; packageJson?: import("../types").PackageJson | undefined; }>; export { normalizeStats }; //# sourceMappingURL=normalize-stats.d.ts.map