import type { AnnotationConflict } from './annotation-conflict';
export interface PaginatedAnnotationConflictList {
    'count': number;
    'next'?: string | null;
    'previous'?: string | null;
    'results': Array<AnnotationConflict>;
}
