import { type AtomType } from "./atom"; export type NumberAtomType = AtomType & { incr(by?: number): NumberAtomType; decr(by?: number): NumberAtomType; clamp(min: number, max: number): NumberAtomType; reset(): NumberAtomType; }; /** Reactive number atom. All writes go through `set`. */ export declare function createNumberAtom(initial?: number): NumberAtomType; //# sourceMappingURL=createNumberAtom.d.ts.map