import type { Dayjs } from 'dayjs'; /** * Realtime 模式:每秒将当前系统时间通过 onTick 回传 */ export declare function useRealtime(enabled: boolean, onTick: (now: Dayjs) => void): void;