import type { ProjectConfig } from "./types.js"; /** * Serialize a {@link ProjectConfig} to a YAML string suitable for writing to disk. * * Only the `paths`, `environments`, and `suites` sections are written — `dir` * is runtime-only (derived from the file's location on disk, not stored in the * file itself). `environments` and `suites` are omitted when empty. */ export declare function serializeConfig(config: ProjectConfig): string; //# sourceMappingURL=serializer.d.ts.map