/**
 * DrawMode is an enumeration of constant values that specify the
 * DrawMode to use when drawing.
 */
export declare class DrawMode {
    /**
     * Used to specify to draw both strokes and fills
     */
    static BOTH: number;
    /**
     * Used to specify to draw strokes only
     */
    static STROKE: number;
    /**
     * Used to specify to draw fills only
     */
    static FILL: number;
}
//# sourceMappingURL=DrawMode.d.ts.map