import { Base, Type } from "./type";
import { UIElementPropertyId } from "./UIElementPropertyId";
/**
 * @hidden
 */
export declare class AnimationKeyFrameProperty extends Base {
    static $t: Type;
    constructor(a: UIElementPropertyId, b: any);
    a: UIElementPropertyId;
    private b;
    get d(): any;
    set d(a: any);
    private c;
}
