import { Description } from "./Description";
import { PointDescription } from "./PointDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class SliceEventArgsDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    constructor();
    private n;
    get isSelected(): boolean;
    set isSelected(a: boolean);
    private m;
    get isExploded(): boolean;
    set isExploded(a: boolean);
    private k;
    get position(): PointDescription;
    set position(a: PointDescription);
    private q;
    get originalEventRef(): string;
    set originalEventRef(a: string);
}
