export declare const autoSetupSchema: { name: string; description: string; inputSchema: { type: "object"; properties: { project_name: { type: string; description: string; default: string; }; }; }; }; export declare function autoSetupTool(args: any): Promise<{ success: boolean; message: string; credentials: { DATABASE_URL_MEMORY: string; REDIS_URL: string; OPENAI_API_KEY: string; }; needs_railway_call?: undefined; missing?: undefined; error?: undefined; } | { success: boolean; needs_railway_call: boolean; message: string; missing: { DATABASE_URL_MEMORY: boolean; REDIS_URL: boolean; OPENAI_API_KEY: boolean; }; credentials?: undefined; error?: undefined; } | { success: boolean; error: any; message?: undefined; credentials?: undefined; needs_railway_call?: undefined; missing?: undefined; }>; export declare function saveCredentialsFromRailway(credentials: { DATABASE_URL_MEMORY?: string; REDIS_URL?: string; OPENAI_API_KEY?: string; }): Promise<{ success: boolean; message: string; saved: string[]; config_file: string; error?: undefined; } | { success: boolean; error: any; message?: undefined; saved?: undefined; config_file?: undefined; }>; export declare const saveCredentialsSchema: { name: string; description: string; inputSchema: { type: "object"; properties: { DATABASE_URL_MEMORY: { type: string; description: string; }; REDIS_URL: { type: string; description: string; }; OPENAI_API_KEY: { type: string; description: string; }; }; required: string[]; }; }; export declare function saveCredentialsTool(args: any): Promise<{ success: boolean; message: string; saved: string[]; config_file: string; error?: undefined; } | { success: boolean; error: any; message?: undefined; saved?: undefined; config_file?: undefined; }>; //# sourceMappingURL=auto-setup.tool.d.ts.map