/// import { ReturnValue } from '../define'; interface Action { on: () => void; off: () => void; } declare function useTimeout(callback: () => void, delay?: number): ReturnValue; export { useTimeout };