import { IWebhookFunctions, INodeType, INodeTypeDescription, IWebhookResponseData } from 'n8n-workflow';
export declare class TogglWebhookTrigger implements INodeType {
    description: INodeTypeDescription;
    webhookActivate(this: IWebhookFunctions): Promise<void>;
    webhookDeactivate(this: IWebhookFunctions): Promise<void>;
    webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>;
    private static compareSignatures;
}
