import type { IExecuteFunctions, INodeType, INodeTypeDescription, INodeExecutionData, ISupplyDataFunctions, SupplyData } from 'n8n-workflow';
export declare class Recallio implements INodeType {
    description: INodeTypeDescription;
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
    supplyData(this: ISupplyDataFunctions, itemIndex: number): Promise<SupplyData>;
}
