import { Parameter } from "./../index";
export interface MarkRelationInterface {
    marked?: boolean;
    objectID?: string;
}
export declare class MarkRelation implements MarkRelationInterface, Parameter {
    marked?: boolean;
    objectID?: string;
    constructor(data: any);
    static getMarkedDefault(): boolean;
    static getMarkedDescription(): string;
    static getObjectIDDefault(): string;
    static getObjectIDDescription(): string;
    static fromJson(data: any): MarkRelation;
    toJson(): any;
    clone(): MarkRelation;
}
