import { AlertKey } from "./enums"; import { AlertOptions } from "./types"; import { WindowHapiService } from "../_window/service.types"; import { WindowHapiModuleWithConstructorArgs } from "../_window"; export type WindowHapiServiceAlert = WindowHapiModuleWithConstructorArgs<{ show: (key: AlertKey, props: any | undefined, options: AlertOptions, id: string) => void; hide: (key: AlertKey) => void; }, { readonly service: WindowHapiService; }>; //# sourceMappingURL=service.types.d.ts.map