import { JSONC } from './jsonc'; import { JSONObject } from './json_file'; export declare class YAML extends JSONC { lineCommentPattern: RegExp; parse(content: string): JSONObject; stringify(content: JSONObject): string; }