import type { IWebhookFunctions, INodeType, INodeTypeDescription, IWebhookResponseData, IHookFunctions } from 'n8n-workflow'; export declare const ProjectStates: readonly ["idea", "draft", "for_sale", "under_review", "success", "faulty"]; export declare function projectStateToLabel(state: string): string; export declare class FoxStatusChange implements INodeType { description: INodeTypeDescription; webhookMethods: { default: { checkExists(this: IHookFunctions): Promise; create(this: IHookFunctions): Promise; delete(this: IHookFunctions): Promise; }; }; webhook(this: IWebhookFunctions): Promise; }