type Callback = (context: { next: boolean; inRef: any; }) => void; interface SetIdleTimeParams { from: string; inRef: any; timeInSeconds: number; cb?: Callback; } interface GetParams { from: string; inRef: any; } declare class IdleState { private indexCb; /** * * @param param0 */ setIdleTime: ({ from, inRef, timeInSeconds, cb }: SetIdleTimeParams) => void; /** * * @param param0 * @returns */ get: ({ from, inRef }: GetParams) => boolean | null; /** * * @param ctxInComing */ stop: (ctxInComing: { from: any; }) => void; } export { IdleState }; //# sourceMappingURL=idlestateClass.d.ts.map