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