export declare const config: {
    elastic: {
        host: string;
        user: string;
        password: string;
        dataIndex: string;
        logIndex: string;
    };
    openLLM: {
        apiKey: string;
        baseUrl: string;
    };
    openai: {
        apiKey: string;
        baseUrl: string;
        finetune: {
            enabled: boolean;
            endpoint: string;
        };
    };
    costPerToken: number;
    retry: {
        retries: number;
        delay: number;
    };
    dashboard: {
        port: string | number;
    };
};
