import { Env } from "./Env"; import { Config } from "./Types"; import { FileInput } from "./parse/File"; import { Database } from "./process/Types"; /** * Generates a Database object from the given files and configuration. * * The entry point for chat-analytics if you want to use it as a library. */ export declare const generateDatabase: (files: FileInput[], config: Config, env: Env) => Promise; /** Takes a Database object and generates the report HTML code. It also returns the compressed data */ export declare const generateReport: (database: Database, env: Env) => Promise<{ data: string; html: string; }>;