import { IExecuteFunctions } from 'n8n-workflow'; export declare function instanceConnect(ef: IExecuteFunctions): Promise<{ json: { success: boolean; data: any; }; error?: undefined; } | { json: { success: boolean; error: { message: string; details: any; code: any; timestamp: string; }; }; error: { success: boolean; error: { message: string; details: any; code: any; timestamp: string; }; }; }>;