import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from "n8n-workflow"; import { testTickTickSessionApi } from "./helpers/credentialTest"; export declare class TickTick implements INodeType { description: INodeTypeDescription; methods: { loadOptions: Record; listSearch: { searchTasks(this: import("n8n-workflow").ILoadOptionsFunctions, filter?: string): Promise; }; credentialTest: { tickTickSessionApiTest: typeof testTickTickSessionApi; }; }; execute(this: IExecuteFunctions): Promise; }