import type { IDataObject } from 'n8n-workflow'; /** * Returns the effective $top value to send to the API. * Single-entry modes always fetch 1 to avoid over-fetching. */ export declare function effectiveTop(outputMode: string, historyCount: number): number; /** * Apply output mode transformation to raw secureScores API results. * Unknown mode values fall through to 'summary' (safe default). * Empty results return an appropriate empty shape per mode. */ export declare function applyOutputMode(results: IDataObject[], mode: string, includeDescriptions: boolean): IDataObject | IDataObject[]; //# sourceMappingURL=secureScoreTransform.d.ts.map