import { UseIntervalOptions } from "../../../hooks/index.js"; /** * * @kind 09-Performance */ export declare const useInterval: (callback: () => void, interval: number | null, options?: UseIntervalOptions) => { active: boolean; start: () => void; stop: () => void; };