export declare class WebhookLog {
    id: number;
    event_id: string;
    type: string;
    payload: string;
    status: string;
    error_message: string;
    created_at?: Date;
}
