import { WebhookModule, WebhookResponseInterface } from './webhook.types'; export declare const createWebhookModule: () => WebhookModule; export declare const serverAddressesMatch: ({ headers: { host }, url }: { headers: { host?: string | undefined; }; url?: string | undefined; }, { serverAddress }: { serverAddress: string; }) => boolean; export declare const WebhookResponse: WebhookResponseInterface;