import { WebviewId, WebviewPlugin } from '@gitlab-org/webview-plugin'; import { WebviewLocationService } from './webview_resource_location_service'; export type WebviewMetadata = { id: WebviewId; title: string; uris: string[]; }; export declare class WebviewMetadataProvider { #private; constructor(accessInfoProviders: WebviewLocationService, plugins: Set); getMetadata(): WebviewMetadata[]; }