import { Tool } from "@modelcontextprotocol/sdk/types.js";
declare module "../utils/config.js" {
    interface Config {
        openaiApiKey: string;
        s3ApiToken: string;
        perplexityApiKey: string;
        llamaApiKey: string;
        vendorModel: string;
        API_BASE_URL: string;
        API_TOKEN: string;
        etlDevMongoUri: string;
        etlDevDbName: string;
    }
}
export declare const toolDefinitions: Tool[];
