import type { Atom } from '../utils/types.js'; type Params = { defaultValue?: T; }; declare const createAtomMock: (options?: Params) => Atom; export default createAtomMock;