type EntityType = 'figure' | 'table' | 'formula'; declare const ENTITY_DIRECTORIES: ReadonlyMap; declare const ENTITY_TYPES: readonly EntityType[]; declare function entityDir(type: EntityType): string; declare function entityPath(type: EntityType, id: string): string; declare function isKnownEntityType(type: string): type is EntityType; declare function parseEntityPath(zipPath: string): { type: EntityType; id: string; } | null; export { ENTITY_DIRECTORIES, ENTITY_TYPES, entityDir, entityPath, isKnownEntityType, parseEntityPath, }; export type { EntityType }; //# sourceMappingURL=entity-directory.d.ts.map