import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from "n8n-workflow"; import { getContactResourceMapperFields, getContactResourceMapperFieldsForUpdate, getContactResourceMapperFieldsForUpsert } from "./methods/resourceMappers/contact.resourceMapper"; import { getContactPersonResourceMapperFields, getContactPersonResourceMapperFieldsForUpdate } from "./methods/resourceMappers/contactPerson.resourceMapper"; import { getDealResourceMapperFields, getDealResourceMapperFieldsForUpdate } from "./methods/resourceMappers/deal.resourceMapper"; export declare class SalesSuite implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getSearchFilterProperties(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; getSearchPropertyIdentifiers(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; getSearchSelectOptions(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; getUsers(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; getUsersByEmail(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; loadContactPropertiesAsOptions(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; loadDealPropertiesAsOptions(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; loadPipelines(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; loadStages(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; loadForms(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; loadTriggerActionButtons(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; loadPhoneCallActivityTypesForCreate(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; loadPhoneCallActivityTypes(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; loadCallResultTypesForCreate(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; loadCallResultTypes(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; getCalleeContactPersons(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; getCalleePhoneNumbers(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; getWebhookTriggers(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<{ name: string; value: string; description?: string; }[]>; getWebhooksAsOptions(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; getFormsAsOptions(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; getWebhookProperties(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; getDeals(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; getPipelines(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; getStagesByPipeline(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; getSearchScopePipelines(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; getSearchScopePhases(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; getContacts(this: import("n8n-workflow").ILoadOptionsFunctions): Promise; }; resourceMapping: { getContactResourceMapperFields: typeof getContactResourceMapperFields; getContactResourceMapperFieldsForUpdate: typeof getContactResourceMapperFieldsForUpdate; getContactResourceMapperFieldsForUpsert: typeof getContactResourceMapperFieldsForUpsert; getContactPersonResourceMapperFields: typeof getContactPersonResourceMapperFields; getContactPersonResourceMapperFieldsForUpdate: typeof getContactPersonResourceMapperFieldsForUpdate; getDealResourceMapperFields: typeof getDealResourceMapperFields; getDealResourceMapperFieldsForUpdate: typeof getDealResourceMapperFieldsForUpdate; }; }; execute(this: IExecuteFunctions): Promise; }