import { Parameter } from "./../index";
export interface GroupRelationInterface {
    objectID?: string;
}
export declare class GroupRelation implements GroupRelationInterface, Parameter {
    objectID?: string;
    constructor(data: any);
    static getObjectIDDefault(): string;
    static getObjectIDDescription(): string;
    static fromJson(data: any): GroupRelation;
    toJson(): any;
    clone(): GroupRelation;
}
