import { ErrorResponse } from "../../../v2/parsing/index.js";
import { StringDict } from "../../../parsing/index.js";
/**
 * JobWebhook information.
 */
export declare class JobWebhook {
    /**
     * JobWebhook ID.
     */
    id: string;
    /**
     * Created at date.
     */
    createdAt: Date | null;
    /**
     * Status of the webhook.
     */
    status: string;
    /**
     * Error response, if any.
     */
    error?: ErrorResponse;
    constructor(serverResponse: StringDict);
}
