import type { SomeSchema } from '@ui-schema/ui-schema/CommonTypings'; export type loadSchemaRefPlugin = (ref: string, rootId?: string, versions?: string[]) => void; export type getSchemaRefPlugin = (ref: string, rootId?: string, version?: string) => SomeSchema | null; export declare const useSchemaNetworkRef: () => { getSchema: getSchemaRefPlugin; loadSchema: loadSchemaRefPlugin; };