import type { Options, Path, Type } from './types'; declare function createGlobalStorage(type: Type, options?: Partial): void; declare function updateGlobalStorage(type: Type, options?: Partial, force?: boolean): void; declare function length(type: Type, path?: Path | null): number; export { createGlobalStorage, length, updateGlobalStorage };