import type $Refs from "./refs.js";
import type { ParserOptions } from "./options.js";
import type { JSONSchema } from "./types/index.js";
interface ParseTarget {
    url: string;
    reference?: string;
    baseUrl?: string;
}
/**
 * Reads and parses the specified file path or URL.
 */
declare function parse<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(target: string | ParseTarget, $refs: $Refs<S, O>, options: O): Promise<string | S | Buffer<ArrayBufferLike> | undefined>;
export default parse;
