import { Base, Type } from "./type";
/**
 * @hidden
 */
export declare class DescriptionRefTargetInfo extends Base {
    static $t: Type;
    private _target;
    get target(): any;
    set target(a: any);
    private _propertyName;
    get propertyName(): string;
    set propertyName(a: string);
    private _container;
    get container(): any;
    set container(a: any);
}
