export interface ResolvedSplat { url: string; name?: string; } /** Where a splat's bytes come from, injected so the registry can be tested without the network. */ export interface SplatSource { resolve(id: string): Promise; } /** Splats need no conversion, so they stream straight from the file's presigned download URL. */ export declare function createHttpSplatSource(): SplatSource; //# sourceMappingURL=splatSource.d.ts.map