import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class Taiga implements INodeType {
    description: INodeTypeDescription;
    methods: {
        loadOptions: {
            getEpics(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getMilestones(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getPriorities(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getProjects(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getRoles(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getSeverities(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getTags(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getTypes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getUsers(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getUserStories(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getIssueStatuses(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getTaskStatuses(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getUserStoryStatuses(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
        };
    };
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
//# sourceMappingURL=Taiga.node.d.ts.map