/** * ChatToMap Shared Types & Utilities * * Lightweight exports for use in web workers and other environments where * heavy dependencies (pdfkit, exceljs) should not be bundled. * * This module exports ONLY: * - Type definitions * - Pure utility functions with zero external dependencies * * @license AGPL-3.0 */ export type { ActivityCategory } from '../categories-core'; export { CATEGORY_COLORS, CATEGORY_EMOJI, VALID_CATEGORIES } from '../categories-core'; export type { ImageMeta, ImageMetadata, ImageResult, ImageSource } from '../images/types'; export type { ScrapedMetadata, ScrapeOutcome } from '../scraper/types'; export type { EntityType, ExternalIdType, ResolvedEntity } from '../search/types'; export type { ActivityLink, ActivityLinkContext, ActivityLinkMetadata, ActivityLinkResult, ActivityLinkType, ActivityMessage, ApiError, ApiErrorType, CandidateMessage, CandidateSource, ChatMetadata, ChatSource, CLIOptions, ClassifiedActivity, ClassifiedImageHints, ClassifiedLinkHints, ClassifierConfig, ClassifierProvider, EmbeddedMessage, EmbeddingConfig, ExportMetadata, ExtractorOptions, ExtractorResult, GeocodedActivity, IntentSignals, LlmUsage, MapConfig, MapStyle, MediaType, ParsedMessage, ParseResult, ParserOptions, PDFConfig, PlaceLookupConfig, PlaceLookupResult, PlaceLookupSource, PlaceLookupUsage, ProcessingStats, ProviderConfig, Result, ResultWithUsage, SemanticSearchConfig, SocialPlatform, UrlType, WhatsAppFormat } from '../types'; export { addLlmUsage, addPlaceLookupUsage, EMPTY_LLM_USAGE, EMPTY_PLACE_LOOKUP_USAGE } from '../types'; export { calculateCombinedScore, formatLocation, isMappable } from '../types/classifier'; /** * Library version. */ export declare const VERSION = "0.1.0"; //# sourceMappingURL=index.d.ts.map