import { JorfCategorieTag, LegiCategorieTag } from '@tricoteuses/legifrance'; import { JSONValue } from 'postgres'; export type AssembleeObjectType = "Document" | "DossierParlementaire"; export type AssembleeObjectCache = Map>; export type LegifranceObjectCache = Map>; export type ObjectCache = { assemblee: AssembleeObjectCache; legifrance: LegifranceObjectCache; }; export declare const newAssembleeObjectCache: () => AssembleeObjectCache; export declare const newLegifranceObjectCache: () => LegifranceObjectCache; export declare const newObjectCache: () => ObjectCache;