import { OverlayEntry as IOverlayEntry } from "../response.js"; import { Component } from "../../components/component.js"; export { IOverlayEntry }; export declare class OverlayEntryBaseImpl extends Component { /** * Whether this entry must be included in the tree even if there is a fully opaque entry above it. */ maintainState(maintainState: IOverlayEntry['maintainState']): this; /** * Whether this entry occludes the entire overlay. */ opaque(opaque: IOverlayEntry['opaque']): this; /** * Whether this entry should be shown. */ showOverlay(showOverlay: IOverlayEntry['showOverlay']): this; }