import { Fs as IFs } from '../type';
import { Fs } from '../entity/fs';
import { Modules } from '../../module';
export interface Workspace {
    path: string;
    publish: string;
    osFs: IFs;
}
/**
 * Create Fs entity following Go version structure
 * TypeScript version of Go's New function
 */
export declare function createFs(workspace: Workspace, mods: Modules): Promise<Fs>;
//# sourceMappingURL=fs.d.ts.map