import { StringLiteralV2 } from '../string-literal-v2';
import { ClassDefinition, IHasProperty } from './class-definition';
/**
 * @category Model V2
 */
export declare class StandoffClassDefinition extends ClassDefinition {
    id: string;
    subClassOf: string[];
    comment?: string;
    label?: string;
    propertiesList: IHasProperty[];
}
/**
 * @category Model V2
 */
export declare class StandoffClassDefinitionWithAllLanguages extends StandoffClassDefinition {
    comment?: string;
    comments: StringLiteralV2[];
    label?: string;
    labels: StringLiteralV2[];
}
//# sourceMappingURL=standoff-class-definition.d.ts.map