import { IExecuteFunctions } from 'n8n-core'; import { JsonObject, INodeProperties } from 'n8n-workflow'; export declare const listCompaniesFields: INodeProperties[]; export declare function mapListCompaniesParams(this: IExecuteFunctions, options: any): { limit: number; offset: number; id?: string; name?: string; }; export declare function listCompanies(this: IExecuteFunctions): Promise;