import { Api } from "../abstracts";
import { Client, RequestOptions } from "../client";
import { IWebhookRequestSchemas } from "./types";
export declare class WebhookApi extends Api {
    static paths: {
        create: string;
        delete: string;
        events: string;
        get: string;
        list: string;
        types: string;
        update: string;
    };
    static schemas: IWebhookRequestSchemas;
    constructor(client: Client);
    events(id: string, options?: Partial<RequestOptions>): Promise<any>;
    types(options?: Partial<RequestOptions>): Promise<any>;
}
