import type { Label } from './label';
export interface PaginatedLabelList {
    'count': number;
    'next'?: string | null;
    'previous'?: string | null;
    'results': Array<Label>;
}
