import { ParseResultElement } from '@swagger-api/apidom-core'; import Parser, { ParserOptions } from '../Parser.ts'; import File from '../../../File.ts'; export type { default as Parser, ParserOptions } from '../Parser.ts'; export type { default as File, FileOptions } from '../../../File.ts'; /** * @public */ export interface YAMLParserOptions extends Omit { } /** * @public */ declare class YAML1Parser extends Parser { refractorOpts: object; constructor(options?: YAMLParserOptions); canParse(file: File): Promise; parse(file: File): Promise; } export default YAML1Parser;