import { Base, Type } from "./type";
import { UIElementPropertyId } from "./UIElementPropertyId";
/**
 * @hidden
 */
export declare abstract class UIElementPropertyAccessor extends Base {
    static $t: Type;
    a: UIElementPropertyId;
    abstract c(a: any, b: any): void;
    abstract b(a: any): any;
}
