import { StringDict } from "../../../parsing/index.js";
/**
 * Model webhook info.
 */
export declare class ModelWebhook {
    /**
     * ID of the webhook.
     */
    id: string;
    /**
     * Name of the webhook.
     */
    name: string;
    /**
     * URL of the webhook.
     */
    url: string;
    constructor(serverResponse: StringDict);
}
