export interface ResolvedPointCloud { fileName: string; baseUrl: string; name?: string; } /** Where a cloud's octree lives. Injected so the scene component can be tested without a service. */ export interface PointCloudSource { resolve(fileId: string): Promise; } type FetchLike = (input: string) => Promise; export declare function createHttpPointCloudSource(apiBase: string, fetchImpl?: FetchLike): PointCloudSource; export {}; //# sourceMappingURL=pointCloudSource.d.ts.map