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