/** * Get the real time since the start of the animation. * * @remarks * The returned value accounts for offsets caused by functions such as * {@link flow.waitFor}. * * @example * ```ts * // current time: 0s * yield* waitFor(0.02); * * // current time: 0.016(6)s * // real time: 0.02s * const realTime = useTime(); * ``` */ export declare function useTime(): number; //# sourceMappingURL=useTime.d.ts.map