export interface Config {
    mongoUri: string;
    dbName: string;
    etlDevMongoUri: string;
    etlDevDbName: string;
    betaApiMongoUri: string;
    betaApiDbName: string;
    typesenseHost: string;
    typesensePort: string;
    typesenseProtocol: string;
    typesenseApiKey: string;
    cohereApiKey?: string;
    openaiApiKey: string;
    s3ApiToken: string;
    perplexityApiKey: string;
    llamaApiKey: string;
    vendorModel: string;
    API_BASE_URL: string;
    API_TOKEN: string;
    companyName?: string;
    companyDbUri?: string;
    companyDbName?: string;
}
export declare const config: Config;
