export declare class GraphicsPathCommand extends Object {
    static NO_OP: number;
    static MOVE_TO: number;
    static LINE_TO: number;
    static CURVE_TO: number;
    static WIDE_MOVE_TO: number;
    static WIDE_LINE_TO: number;
    static CUBIC_CURVE_TO: number;
    static ARC: number;
    static CLOSE_PATH: number;
    static DRAW_TRIANGLES: number;
    constructor();
}
