export interface PhotogrammetryViewerSettings { resolve2dFileURL(key: string): Promise; skyBoxImage: string | null; } export declare class DefaultPhotogrammetryViewerSettings implements PhotogrammetryViewerSettings { private projectRoot; private imageType; constructor(projectRoot: string, imageType: string); skyBoxImage: string | null; resolve2dFileURL(key: string): Promise; }