import { type Ref } from '@reticlehq/core'; export declare const MAX_TRACKED_REFS = 10000; export declare function echoRef(ref: string): string; export declare const REF_BLOCK = 100; export declare class RefRegistry { #private; constructor(storage?: () => Storage | undefined); get size(): number; markEdited(): void; mintedBeforeLastEdit(ref: string): boolean; refFor(el: Element): Ref; resolve(ref: string): Element | null; } export declare const refs: RefRegistry;