import * as http from 'http'; declare function createWebhookHandler(_options?: { secret?: string; }): (req: any, res: any) => void; declare function startWebhookServer(options?: { port?: number; host?: string; secret?: string; }): http.Server; export { startWebhookServer, createWebhookHandler };