import type { FauxOntology } from "@osdk/faux"; import type { Level } from "./Logger.js"; export interface OacConfig { hooks?: { preSeed?: (fauxOntology: FauxOntology) => Promise }; ontologyDir: string; loggerLevel?: keyof typeof Level; } export declare class OacConfig { constructor(config: OacConfig); }