import type { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow'; import type { MatchFieldPair, CalculationConfig, OutputFieldConfig } from '../interfaces'; /** * Process usage records against a price list, performing exact matching and calculation */ export declare function pricelistLookup(this: IExecuteFunctions, items: INodeExecutionData[], priceListFieldName: string | unknown, usageDataFieldName: string | unknown, matchFields: MatchFieldPair[], calculationConfig: CalculationConfig, outputConfig: OutputFieldConfig): Promise;