import { Base, Nullable$1, Type } from "igniteui-react-core";
import { ISupportSetProperty } from "./ISupportSetProperty";
import { ColorInfo } from "./ColorInfo";
import { ST_BorderStyle } from "./ST_BorderStyle";
import { XmlPartManagerBase } from "./XmlPartManagerBase";
import { ElementPropertyIds } from "./ElementPropertyIds";
/**
 * @hidden
 */
export declare class CT_BorderPr extends Base implements ISupportSetProperty {
    static $t: Type;
    constructor();
    a: ColorInfo;
    b: Nullable$1<ST_BorderStyle>;
    static d(a: XmlPartManagerBase, b: Nullable$1<ST_BorderStyle>): {
        p1: Nullable$1<ST_BorderStyle>;
    };
    static e(a: XmlPartManagerBase, b: string, c?: Nullable$1<ST_BorderStyle>): void;
    setProperty(a: ElementPropertyIds, b: any): void;
    toString(): string;
}
