import { Parameter } from "./../index";
export interface OCGSelectionInterface {
    name?: string;
}
export declare class OCGSelection implements OCGSelectionInterface, Parameter {
    name?: string;
    constructor(data: any);
    static getNameDefault(): string;
    static getNameDescription(): string;
    static fromJson(data: any): OCGSelection;
    toJson(): any;
    clone(): OCGSelection;
}
