import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow'; export declare class Ikas implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getSalesChannels(this: ILoadOptionsFunctions): Promise; getStockLocations(this: ILoadOptionsFunctions): Promise; getProductVariants(this: ILoadOptionsFunctions): Promise; }; }; execute(this: IExecuteFunctions): Promise; }