import type { ILoadOptionsFunctions, IDataObject, INodePropertyOptions } from 'n8n-workflow'; export type Option = INodePropertyOptions; type LoadOptionRow = IDataObject; export declare function toOptions(rows: LoadOptionRow[], labelKeys?: string[], valueKeys?: string[]): INodePropertyOptions[]; export declare function ensureArray(res: T | T[]): T[]; export declare function fetchOptions(this: ILoadOptionsFunctions, endpoint: string, qs?: IDataObject, labelKeys?: string[], valueKeys?: string[]): Promise; export declare function fetchOptionsAll(this: ILoadOptionsFunctions, endpoint: string, qs?: IDataObject, labelKeys?: string[], valueKeys?: string[]): Promise; export {};