export interface Config {
    mongoUri: string;
    dbName: string;
    secondaryMongoUri: string;
    secondaryDbName: 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;
    navtorApiBase?: string;
    navtorUsername?: string;
    navtorPassword?: string;
    navtorClientId?: string;
    navtorClientSecret?: string;
    siyaApiBase?: string;
    siyaApiKey?: string;
    stormglassApiBase?: string;
    stormglassApiKey?: string;
}
export declare const config: Config;
