import type { MikroEnv, MikroJSConfig } from '../../_exports/index.js'; export interface ResolvedSimConfig { memLimit: number; fsLimit: number; fsRoot: string; /** Resolved fs_read_max in bytes. Undefined means "use runtime default". */ fsReadMax: number | undefined; } export declare function resolveSimConfig(config: MikroJSConfig | null): ResolvedSimConfig; /** * Convenience: walk up from `startDir` (or cwd) looking for `mikro.config.ts`, * then resolve the sim section with defaults filled in. The simulator is a * local flow, so it always resolves the `development` config environment. */ export declare function loadSimConfig(startDir?: string, env?: MikroEnv): Promise; //# sourceMappingURL=simConfig.d.ts.map