import { AllEntities, Entity, PropertiesOf } from 'n8n-workflow'; declare type IAmoMap = { account: 'getInfo'; leads: 'getLeads' | 'createLeads' | 'updateLeads'; contacts: 'getContacts' | 'createContacts' | 'updateContacts'; companies: 'getCompany' | 'createCompany' | 'updateCompany'; notes: 'getNotes' | 'createNotes' | 'updateNotes'; unsorted: 'get' | 'create' | 'accept' | 'link' | 'reject' | 'summary'; pipelines: 'get' | 'create' | 'update' | 'remove'; statuses: 'get' | 'create' | 'update' | 'remove'; tasks: 'getTasks' | 'createTasks' | 'updateTasks'; catalogs: 'getCatalogs' | 'addCatalogs' | 'updateCatalogs' | 'getCatalogElements' | 'addCatalogElements' | 'updateCatalogElements'; entities: 'getLinks' | 'link' | 'unlink' | 'getMultipleLinks' | 'multipleLink' | 'multipleUnlink'; }; export declare type IAmo = AllEntities; export declare type IAccountAmo = Entity; export declare type ILeadsAmo = Entity; export declare type IContactsAmo = Entity; export declare type ICompaniesAmo = Entity; export declare type IUnsortedAmo = Entity; export declare type IPipelinesAmo = Entity; export declare type IStatusesAmo = Entity; export declare type ITasksAmo = Entity; export declare type INotesAmo = Entity; export declare type ICatalogsAmo = Entity; export declare type IEntitiesAmo = Entity; export declare type IAccountProperties = PropertiesOf; export declare type ILeadsProperties = PropertiesOf; export declare type IContactsProperties = PropertiesOf; export declare type ICompaniesProperties = PropertiesOf; export declare type IUnsortedProperties = PropertiesOf; export declare type IPipelinesProperties = PropertiesOf; export declare type IStatusesProperties = PropertiesOf; export declare type ICatalogsProperties = PropertiesOf; export declare type ITasksProperties = PropertiesOf; export declare type INotesProperties = PropertiesOf; export declare type IEntitiesProperties = PropertiesOf; export interface IAttachment { fields: { item?: object[]; }; actions: { item?: object[]; }; } export {};