import { Observable } from 'rxjs'; interface Doc { id: string; description: string; prop?: string; } export declare class ConnectDocsProvider { private readonly telemetry; constructor(telemetry: any); workspaceDocs(dependencies: { [depName: string]: string; }): Observable; schematicDocs(collectionName: string, collectionVersion: string, name: string): Observable; openDoc(id: string): Observable; } export {};