import { StringLiteralV2 } from "../string-literal-v2";
import { PropertyDefinition } from "./property-definition";
/**
 * @category Model V2
 */
export declare class SystemPropertyDefinition extends PropertyDefinition {
    id: string;
    subPropertyOf: string[];
    comment?: string;
    label?: string;
    subjectType?: string;
    objectType?: string;
}
/**
 * @category Model V2
 */
export declare class SystemPropertyDefinitionWithAllLanguages extends SystemPropertyDefinition {
    comment?: string;
    comments: StringLiteralV2[];
    label?: string;
    labels: StringLiteralV2[];
}
