import { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow'; export declare class Automatic1111Node implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { loadModels(this: ILoadOptionsFunctions): Promise; loadSamplers(this: ILoadOptionsFunctions): Promise; }; }; execute(this: IExecuteFunctions): Promise; }