export interface Config {
    mongoUri: string;
    dbName: string;
    secondaryDbUri: string;
    secondaryDbName: string;
    thirdDbUri: string;
    thirdDbName: string;
    companyDbUri: string;
    companyDbName: string;
    companyName?: string;
    typesenseHost: string;
    typesensePort: string;
    typesenseProtocol: string;
    typesenseApiKey: string;
    cohereApiKey?: string;
    openaiApiKey?: string;
    s3ApiToken?: string;
    perplexityApiKey?: string;
    llamaApiKey?: string;
    vendorModel?: string;
    googleClientId?: string;
    googleClientSecret?: string;
    googleRedirectUri?: string;
    s3GenerateHtmlUrl?: string;
    llamaParseUrl?: string;
    googleApiKey?: string;
    googleSearchEngineId?: string;
    mongoMaxPoolSize?: number;
    mongoMinPoolSize?: number;
    mongoConnectionTimeout?: number;
    mongoSocketTimeout?: number;
    typesenseConnectionTimeout?: number;
    typesenseRetries?: number;
}
export declare const config: Config;
