import type { ILoadOptionsFunctions, INodeExecutionData, INodeType, INodeTypeDescription, IPollFunctions } from "n8n-workflow"; import { testTickTickSessionApi } from "./helpers/credentialTest"; import { getProjects } from "./helpers/loadOptions"; export declare class TickTickTrigger implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getProjects: typeof getProjects; }; listSearch: { searchProjects(this: ILoadOptionsFunctions, filter?: string): Promise<{ results: { name: string; value: string; }[]; }>; searchAssigneesForSelectedProjects(this: ILoadOptionsFunctions, filter?: string): Promise<{ results: { name: string; value: string; }[]; }>; }; credentialTest: { tickTickSessionApiTest: typeof testTickTickSessionApi; }; }; poll(this: IPollFunctions): Promise; }