import Result from "../../models/Result"; export interface SetOverlayVisibilityParams { modelId: string[]; visible: boolean; } export interface SetSpecifyOverlayParams { type?: string[]; group?: string[]; visible: boolean; } export interface RemoveOverlayParams { modelId: string[]; } export interface RemoveSpecifyOverlayParams { type?: string[]; group?: string[]; } declare class Overlay { private static get className(); static setOverlayVisibility: (params: SetOverlayVisibilityParams) => Promise>; static removeOverlay: (params: RemoveOverlayParams) => Promise>; static setSpecifyOverlay: (params: SetSpecifyOverlayParams) => Promise>; static removeSpecifyOverlay: (params: RemoveSpecifyOverlayParams) => Promise>; } export default Overlay;