import type { ILoadOptionsFunctions, INodeListSearchResult } from "n8n-workflow"; export declare const taskMethods: { loadOptions: { getTasks(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; }; listSearch: { searchProjectUsers(this: ILoadOptionsFunctions, filter?: string): Promise; searchSharedProjects(this: ILoadOptionsFunctions, filter?: string): Promise; searchTaskTags(this: ILoadOptionsFunctions, filter?: string): Promise; }; };