import type { INodeType, INodeTypeDescription, IWebhookFunctions, IWebhookResponseData } from 'n8n-workflow';
export declare class PoliTrigger implements INodeType {
    description: INodeTypeDescription;
    webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>;
    activate(this: IWebhookFunctions): Promise<void>;
    deactivate(this: IWebhookFunctions): Promise<void>;
}
