import type { INode } from 'n8n-workflow';
export declare function handleOperationError(node: INode, error: any, continueOnFail: boolean, operationName: string): any;
export declare function handleGraphQLErrors(node: INode, graphqlErrors: Array<{
    message: string;
    code?: string;
    extensions?: {
        code?: string;
        status?: number;
        correlationId?: string;
    };
}>): never;
