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