import { Color } from "./color";
import { Dash } from "./dash";
import { BorderEffect } from "./borderEffect";
import { BorderStyle } from "./borderStyle";
export declare class Border {
    'width': number;
    'effectIntensity': number;
    'style': BorderStyle;
    'effect': BorderEffect;
    'dash': Dash;
    'color': Color;
    static discriminator: any;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
