import type { IExecuteFunctions, IHookFunctions, ILoadOptionsFunctions } from "n8n-workflow"; export declare function getInboxProjectId(this: IExecuteFunctions | IHookFunctions | ILoadOptionsFunctions): Promise; export declare function getProjects(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; export declare function searchProjects(this: ILoadOptionsFunctions, filter?: string): Promise<{ name: string; value: string; }[]>; export declare function searchProjectsV2(this: ILoadOptionsFunctions, filter?: string): Promise<{ name: string; value: string; }[]>; export declare function searchProjectsForDelete(this: ILoadOptionsFunctions, filter?: string): Promise<{ name: string; value: string; }[]>; export declare function getTasks(this: ILoadOptionsFunctions, projectId?: string): Promise<{ name: string; value: string; }[]>; export declare function searchTasks(this: ILoadOptionsFunctions, filter?: string): Promise<{ name: string; value: string; }[]>; export declare function searchTasksV2(this: ILoadOptionsFunctions, filter?: string): Promise<{ name: string; value: string; }[]>; export declare function getHabits(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; export declare function searchHabits(this: ILoadOptionsFunctions, filter?: string): Promise<{ name: string; value: string; }[]>; export declare function getTags(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; export declare function searchTags(this: ILoadOptionsFunctions, filter?: string): Promise<{ name: string; value: string; }[]>; export declare function searchParentTags(this: ILoadOptionsFunctions, filter?: string): Promise<{ name: string; value: string; }[]>; export declare function getProjectGroups(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; export declare function searchProjectGroups(this: ILoadOptionsFunctions, filter?: string): Promise<{ name: string; value: string; }[]>; export declare function searchProjectGroupsForCreate(this: ILoadOptionsFunctions, filter?: string): Promise<{ name: string; value: string; }[]>; export declare function searchProjectUsers(this: ILoadOptionsFunctions, filter?: string): Promise<{ name: string; value: string; }[]>; export declare function searchAssigneesForSelectedProjects(this: ILoadOptionsFunctions, filter?: string): Promise<{ name: string; value: string; }[]>; export declare function searchSharedProjects(this: ILoadOptionsFunctions, filter?: string): Promise<{ name: string; value: string; }[]>; export declare function searchTaskTags(this: ILoadOptionsFunctions, filter?: string): Promise<{ name: string; value: string; }[]>;