import type { WebhookRead } from './webhook-read';
export interface PaginatedWebhookReadList {
    'count': number;
    'next'?: string | null;
    'previous'?: string | null;
    'results': Array<WebhookRead>;
}
