import type { InternalResource, InternalUrl, ProtocolHandler, ResolveContext } from "./types"; export declare class ArtifactProtocolHandler implements ProtocolHandler { readonly scheme = "artifact"; readonly immutable = true; resolve(url: InternalUrl, context?: ResolveContext): Promise; }