import { FrameworkElement } from "./FrameworkElement";
import { Brush } from "./Brush";
import { DoubleCollection } from "./DoubleCollection";
import { PenLineCap } from "./PenLineCap";
import { PenLineJoin } from "./PenLineJoin";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class Shape extends FrameworkElement {
    static $t: Type;
    constructor();
    _fill: Brush;
    get fill(): Brush;
    set fill(a: Brush);
    _stroke: Brush;
    get stroke(): Brush;
    set stroke(a: Brush);
    ab: boolean;
    ad: number;
    ai: DoubleCollection;
    al: PenLineCap;
    ak: PenLineCap;
    am: PenLineJoin;
    ac: number;
    aj: PenLineCap;
}
