import { type NodeParameterValue, type IExecuteFunctions, type INodeExecutionData, type INodeType, type INodeTypeDescription } from 'n8n-workflow'; import { type BraveSearchOperation } from './operations'; export declare class BraveSearch implements INodeType { description: INodeTypeDescription; execute(this: IExecuteFunctions): Promise; static buildParams(ctx: IExecuteFunctions, operation: BraveSearchOperation, index: number): Record; static performRequest(ctx: IExecuteFunctions, index: number): Promise; }