import { BaseObject } from './baseObject';
export interface AppliedLabel extends BaseObject {
    labelId?: number;
    isNegated?: boolean;
}
