export type AutoPlayTimerT = { start: () => void; stop: () => void; }; export default function autoPlayTimer(callback: () => void, duration?: number): AutoPlayTimerT;