export declare function useInterval(callback?: () => void, interval?: number): {
    isRunning: import("vue").Ref<boolean, boolean>;
    start: () => void;
    stop: () => void;
    resume: () => void;
};
