import type { NONE } from "../util/constants.js"; import { Store } from "./Store.js"; /** Store a boolean. */ export declare class BooleanStore extends Store { constructor(value?: boolean | typeof NONE, time?: number); /** Toggle the current boolean value. */ toggle(): void; }