import type { Atom } from '../utils/types.js'; type Params = { atom: Atom; timeout: number; }; declare const timeoutObservers: ({ atom, timeout }: Params) => Atom; export default timeoutObservers;