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