import type { StashItemInterface, StashItemOptions, StashListener } from './types.js'; /** * Represents a Stash Item that allows storing and managing data. */ export declare class StashItem implements StashItemInterface { #private; constructor(options: StashItemOptions); getItem(): TData | null; setItem(value: TData): void; removeItem(): void; subscribe(listener: StashListener): import("./types.js").UnsubscribeFunction; }