import { Element } from '@swagger-api/apidom-core'; import { SchemaElement } from '@swagger-api/apidom-ns-openapi-3-1'; /** * @public */ export declare const resolveSchema$refField: (retrievalURI: string, schemaElement: SchemaElement) => string | undefined; /** * @public */ export declare const resolveSchema$idField: (retrievalURI: string, schemaElement: SchemaElement) => string | undefined; /** * Cached version of SchemaElement.refract. */ export declare const refractToSchemaElement: { (element: T): any; cache: WeakMap; }; /** * @public */ export declare const maybeRefractToSchemaElement: (element: T) => any;