import type { InternalResource, InternalUrl, ProtocolHandler } from "./types"; /** * Handler for omp:// URLs. * * Resolves documentation file names to their content, or lists available docs. */ export declare class OmpProtocolHandler implements ProtocolHandler { #private; readonly scheme = "omp"; readonly immutable = true; resolve(url: InternalUrl): Promise; }