import { WindowHapiModuleWithConstructorArgs, WindowHapiClassInterface } from "./window"; import { WindowHapiLogger } from "../common"; export type WindowHapiUIElementNameForAddingToBody = "he-ui-modals" | "he-ui-alertbar"; export type WindowHapiUI = WindowHapiModuleWithConstructorArgs<{ logger: WindowHapiLogger; addUIElementToBody: (elementName: WindowHapiUIElementNameForAddingToBody) => void; removeUIElementFromBody: (elementName: WindowHapiUIElementNameForAddingToBody) => void; toggleModal: () => void; toggleAlertbar: () => void; addModalElementToBody: (element: HTMLDivElement) => void; removeModalElementFromBody: () => void; getModalElement: () => HTMLDivElement; }, { readonly core: WindowHapiClassInterface; }>; //# sourceMappingURL=ui.types.d.ts.map