export interface DocumentSessionCache { get: (key: K) => V | undefined; set: (key: K, value: V) => void; has: (key: K) => boolean; clear: () => void; } /** Cache em memória para a sessão do modal (Map estável via ref no hook). */ export declare function createDocumentSessionCache(): DocumentSessionCache;