import { type AtomType } from "./atom"; export type BoolAtomType = AtomType & { toggle(): BoolAtomType; setTrue(): BoolAtomType; setFalse(): BoolAtomType; reset(): BoolAtomType; }; /** Reactive boolean atom. All writes go through `set`. */ export declare function createBoolAtom(initial?: boolean): BoolAtomType; //# sourceMappingURL=createBoolAtom.d.ts.map