/// import { IHandler, IWebhookConfig } from '../../types'; import { Handler } from './Handler'; import { Api } from '../Api'; import * as http from 'http'; export declare class Webhook { private readonly token; private readonly handlers; private readonly config?; private readonly logging?; private readonly fileLogging?; private readonly fileLoggingLimit?; api: Api; server: http.Server; handler: Handler; constructor(token: string, handlers: IHandler[], config?: IWebhookConfig | null, logging?: boolean, fileLogging?: boolean, fileLoggingLimit?: number); }