import { EventType } from '../../enums';
export declare class WebhookDTO {
    readonly id: string;
    readonly description: string;
    readonly url: string;
    readonly events: EventType[];
    readonly rate_limit: number;
    readonly status: string;
    readonly created_at: string;
    readonly updated_at: string;
}
