import React from "react"; export interface IdleGameTimeOptions { counterName?: string; dateCreated?: Date; timeRate?: number; counterSpeedMs?: number; minTimeRate?: number; maxTimeRate?: number; } export declare const useIdleGameTime: ({ counterName, dateCreated, timeRate, counterSpeedMs, }: IdleGameTimeOptions) => { timeData: { msPassed: number; timeRate: string; totalAccumulated: string; realTimePast: string; dateCreated: string | undefined; finalDate: string; }; setRate: React.Dispatch>; rate: number; counterName: string | undefined; }; //# sourceMappingURL=useIdleGameTime.d.ts.map