import { Base, Type } from "igniteui-react-core";
import { AttributeType } from "./AttributeType";
import { AttributePresence } from "./AttributePresence";
/**
 * @hidden
 */
export declare class AttDef extends Base {
    static $t: Type;
    f: string;
    c: AttributeType;
    a: string[];
    e: string;
    b: AttributePresence;
    constructor(a: string);
    g(a: string): void;
    d(a: string): boolean;
}
