export declare class ObjectRef {
    readonly objectId: string;
    readonly description: string;
    readonly type: string;
    constructor(objectId: string, description: string, type?: string);
    toString(): string;
    static fromString(objectRef: any): ObjectRef;
}
