import { IExecuteFunctions, INodeExecutionData } from "n8n-workflow";
import { ResourceHandlerBase } from "./ResourceHandlerBase";
import { IResourceHandlerOptions } from "./ResourceHandlerFactory";
/**
 * Handles test connection operations for Bitrix24
 */
export declare class TestConnectionResourceHandler extends ResourceHandlerBase {
    constructor(executeFunctions: IExecuteFunctions, returnData: INodeExecutionData[], options?: IResourceHandlerOptions);
    /**
     * Process test connection operations
     */
    process(): Promise<INodeExecutionData[]>;
    /**
     * Test OAuth2 connection
     */
    private handleTestOAuth2;
    /**
     * Test webhook connection
     */
    private handleTestWebhook;
}
