import { Parameter } from "./../index";
export interface ObjectKeyReplyToAnnotationEditInterface {
    id?: string;
}
export declare class ObjectKeyReplyToAnnotationEdit implements ObjectKeyReplyToAnnotationEditInterface, Parameter {
    id?: string;
    constructor(data: any);
    static getIdDefault(): string;
    static getIdDescription(): string;
    static fromJson(data: any): ObjectKeyReplyToAnnotationEdit;
    toJson(): any;
    clone(): ObjectKeyReplyToAnnotationEdit;
}
