import { type IExecuteFunctions, type INodeExecutionData, type INodeType, type INodeTypeDescription, type INodePropertyOptions, type ILoadOptionsFunctions } from 'n8n-workflow';
export declare class Kodi implements INodeType {
    description: INodeTypeDescription;
    methods: {
        loadOptions: {
            getMethodCategories(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getMethods(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
        };
    };
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
