import { IHookFunctions, IWebhookFunctions, INodeType, INodeTypeDescription, IWebhookResponseData, ICredentialDataDecryptedObject } from 'n8n-workflow'; export declare class PlaneApiTrigger implements INodeType { description: INodeTypeDescription; webhookMethods: { default: { checkExists(this: IHookFunctions): Promise; create(this: IHookFunctions): Promise; delete(this: IHookFunctions): Promise; }; }; static makeApiRequest(method: string, endpoint: string, credentials: ICredentialDataDecryptedObject, body?: object): Promise; static getProjectDetails(projectId: string, credentials: ICredentialDataDecryptedObject): Promise; static formatWebhookToMarkdown(body: any): string; static formatDateTime(dateTimeStr?: string, dateOnly?: boolean): string; static formatPriority(priority?: string | number): string; static formatFieldName(fieldName?: string): string; static formatValue(fieldName: string, value: any): string; webhook(this: IWebhookFunctions): Promise; static getIssueDetails(issueId: string, projectId: string, credentials: ICredentialDataDecryptedObject): Promise; }