import { Options, webhookOptions, webhookExecution } from "./types";
interface webhookController {
    readonly options: Options;
    executeWebhook: (url: string, data: webhookOptions) => Promise<webhookExecution>;
}
export declare namespace webhookClient {
    class WebhookController implements webhookController {
        readonly options: Options;
        constructor(options: Options);
        executeWebhook(url: string, data: webhookOptions): Promise<webhookExecution>;
    }
}
export {};
