/** biome-ignore-all lint/suspicious/noExplicitAny: any is used to maximize compatibility with different types */ import type { StashValue } from './types.js'; export declare function isStashValue(value: unknown): value is StashValue; export declare function resolveStashValue(value: TData): StashValue; export declare function resolveKey(key: string, scope: string | undefined): string; export declare function serialize(value: unknown): string; export declare function deserialize(value: string | null): TData | null;