/** * Recursively resolves all $ref pointers in a a schema object. * @param schema - Schema object containing $ref pointers to resolve * @returns A new object with all $ref pointers replaced by their referenced values * @throws Error if a reference path is invalid or not found */ export declare const resolveRefs: (schema: T) => T;