import { UseTimestampOptions } from '@vueuse/core'; import { MaybeRefOrGetter } from 'vue'; /** * A simple interval timer that counts down the remaining seconds * * @param {MaybeRefOrGetter} length the total amount of time to loop through in ms * @param {MaybeRefOrGetter} interval how often the interval should refresh. Default 1000 * @param {Readonly} intervalOpts opts to pass to the interval fn. Default {} */ export declare const useCountdown: (length: MaybeRefOrGetter, interval: number | "requestAnimationFrame", timestampOpts?: UseTimestampOptions) => { isActive: Readonly>; isPaused: Readonly>; stop: () => void; pause: () => void; resume: () => void; restart: () => void; value: import('vue').ComputedRef; };