import { LogLevel } from "./enums"; export type LogOutput = (source: string, level: LogLevel, ...objects: any[]) => void; export type WindowHapiLogger = { id: string; isEnabled: boolean; setIsEnabled: (isEnabled: boolean) => void; debug: (...objects: any[]) => void; info: (...objects: any[]) => void; warn: (...objects: any[]) => void; error: (...objects: any[]) => void; timeStart: (message: string) => void; timeEnd: (message: string) => void; }; export type WindowHapiTimer = {}; //# sourceMappingURL=types.d.ts.map