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