import type { IFileSystem } from "just-bash";
export declare function createSelfModificationFilesystem(input: {
    readonly appRoot?: string;
    readonly defaultFilesystem: IFileSystem;
    resolveProjectPath?(path: string): string;
    readonly justBash: typeof import("just-bash");
}): Promise<IFileSystem>;
export declare const createLocalSelfModificationFilesystem: typeof createSelfModificationFilesystem;
