import type { Attribute } from './attribute';
import type { LabelType } from './label-type';
export interface Sublabel {
    'id'?: number;
    'name': string;
    'color'?: string;
    'attributes'?: Array<Attribute>;
    'type'?: LabelType;
    'has_parent'?: boolean;
}
