import type { SchemaOf } from '../../helpers'; export interface IConfig { refreshPeriodSeconds: number; consoleNotifyPeriodSeconds: number; consolePresenceTimeoutSeconds: number; hilNotifyPeriodSeconds: number; hilPresenceTimeoutSeconds: number; notifyHilOffline: boolean; notifyConsolesOffline: boolean; } export declare const schemaMap: SchemaOf; export declare const schemaMapDefault: import("../../helpers").StrictSchemaMap<{ refreshPeriodSeconds: unknown; consoleNotifyPeriodSeconds: unknown; consolePresenceTimeoutSeconds: unknown; hilNotifyPeriodSeconds: unknown; hilPresenceTimeoutSeconds: unknown; notifyHilOffline: unknown; notifyConsolesOffline: unknown; }>; export declare const defaultConfig: IConfig;