/** * Copyright (c) ACT, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { FC, ReactElement } from 'react'; export interface IdleTimerProps { children?: ({ remainingTimeMs, reset, }: { remainingTimeMs: number; reset: () => void; }) => ReactElement | null; onAction?: (event?: any) => void; onActive?: (event?: any) => void; onIdle?: (event?: any) => void; stopOnIdle?: boolean; timeoutMs: number; } export declare const IdleTimer: FC; export default IdleTimer; //# sourceMappingURL=index.d.ts.map