/** * Converts a YAML string to a JSON-compatible object. */ export declare function yamlToJson(yamlString: string): any; /** * Converts a JSON-compatible object to a YAML string. */ export declare function jsonToYaml(obj: any): string; /** * Loads a job definition file (YAML or JSON) and returns the parsed object. */ export declare function loadJobDefinitionFromFile(filePath: string): any;