import type { ConfigObject } from "../types.js"; export declare function parseToml(content: string): ConfigObject; export declare function serializeToml(obj: ConfigObject): string; export declare function parseJson(content: string): ConfigObject; export declare function serializeJson(obj: ConfigObject): string; export declare function parseYaml(content: string): ConfigObject; export declare function serializeYaml(obj: ConfigObject): string;