import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription, ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow'; export declare class PlaneApi implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getProjects(this: ILoadOptionsFunctions): Promise; getIssues(this: ILoadOptionsFunctions): Promise; getIssueStates(this: ILoadOptionsFunctions): Promise; getIssueLabels(this: ILoadOptionsFunctions): Promise; getLabels(this: ILoadOptionsFunctions): Promise; getCycles(this: ILoadOptionsFunctions): Promise; getModules(this: ILoadOptionsFunctions): Promise; getIssueTypes(this: ILoadOptionsFunctions): Promise; getIssueProperties(this: ILoadOptionsFunctions): Promise; getPropertyOptions(this: ILoadOptionsFunctions): Promise; getMembers(this: ILoadOptionsFunctions): Promise; }; }; execute(this: IExecuteFunctions): Promise; }