import type { ILoadOptionsFunctions, INodeListSearchResult } from "n8n-workflow"; export declare const projectMethods: { loadOptions: { getProjects(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; getProjectGroups(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; }; listSearch: { searchProjects(this: ILoadOptionsFunctions, filter?: string): Promise; searchProjectsForDelete(this: ILoadOptionsFunctions, filter?: string): Promise; searchProjectsForMove(this: ILoadOptionsFunctions, filter?: string): Promise; searchSharedProjects(this: ILoadOptionsFunctions, filter?: string): Promise; searchProjectGroups(this: ILoadOptionsFunctions, filter?: string): Promise; searchProjectGroupsForCreate(this: ILoadOptionsFunctions, filter?: string): Promise; searchProjectGroupsForUpdate(this: ILoadOptionsFunctions, filter?: string): Promise; }; };