import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class ClickUp implements INodeType {
    description: INodeTypeDescription;
    methods: {
        loadOptions: {
            getTeams(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getSpaces(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getFolders(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getLists(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getFolderlessLists(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getAssignees(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getTags(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getTimeEntryTags(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getStatuses(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getCustomFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getTasks(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
        };
    };
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
//# sourceMappingURL=ClickUp.node.d.ts.map