import { Commit } from './Commit.fs.js';
import { FileSystemTree_$union } from './FileSystemTree.fs.js';
import { Record } from '@fable-org/fable-library-js/Types.js';
import { IComparable, IEquatable } from '@fable-org/fable-library-js/Util.js';
import { TypeInfo } from '@fable-org/fable-library-js/Reflection.js';
export declare class FileSystem extends Record implements IEquatable<FileSystem>, IComparable<FileSystem> {
    readonly Tree: FileSystemTree_$union;
    readonly History: Commit[];
    constructor(Tree: FileSystemTree_$union, History: Commit[]);
    static create({ tree, history }: {
        tree: FileSystemTree_$union;
        history?: Commit[];
    }): FileSystem;
    AddFile(path: string): FileSystem;
    static addFile(path: string): ((arg0: FileSystem) => FileSystem);
    static fromFilePaths(paths: string[]): FileSystem;
    Union(other: FileSystem): FileSystem;
    Copy(): FileSystem;
}
export declare function FileSystem_$reflection(): TypeInfo;
//# sourceMappingURL=FileSystem.fs.d.ts.map