import { Config } from "joist-codegen"; /** A super-simple file system abstraction for testing. */ export interface Fs { load(fileName: string): Promise; save(fileName: string, content: string): Promise; exists(fileName: string): Promise; } /** A real implementation of `Fs` that writes to the `prefix` directory. */ export declare function newFsImpl(prefix: string): Fs; export declare function sortKeys(o: T): T; export declare function getImportExtension(config: Config): "ts" | "js" | null; export declare function getEntitiesImportPath(config: Config): string; //# sourceMappingURL=utils.d.ts.map