import { IExecuteFunctions, INodeExecutionData } from "n8n-workflow";
import { ResourceHandlerBase } from "./ResourceHandlerBase";
import { IResourceHandlerOptions } from "./ResourceHandlerFactory";
/**
 * Handler for Bitrix24 MessageService operations
 */
export declare class MessageServiceResourceHandler extends ResourceHandlerBase {
    private readonly resourceEndpoints;
    constructor(executeFunctions: IExecuteFunctions, returnData: INodeExecutionData[], options?: IResourceHandlerOptions);
    /**
     * Process MessageService operations
     */
    process(): Promise<INodeExecutionData[]>;
    /**
     * Handle send message operation
     */
    private handleSendMessage;
    /**
     * Handle get providers operation
     */
    private handleGetProviders;
    /**
     * Handle get provider limits operation
     */
    private handleGetProviderLimits;
    /**
     * Handle get message status operation
     */
    private handleGetMessageStatus;
}
