import type $Refs from "./refs.js"; import type { ParserOptions } from "./options.js"; import type { JSONSchema } from "./types/index.js"; /** * Reads and parses the specified file path or URL. */ declare function parse = ParserOptions>(path: string, $refs: $Refs, options: O): Promise | S | undefined>; export default parse;