/**
 */
/**
 * ============================================================================
 * IMPORTS
 * ============================================================================
 * @hidden
 */
import { Color } from "../utils/Color";
/**
 * Defines a class that holds default properties for new SVG elements
 */
export declare class SVGDefaults {
    static opacity: number;
    static strokeOpacity: number;
    static strokeWidth: number;
    static fillOpacity: number;
    static fill: Color;
    static stroke: Color;
    static focusable: boolean;
    static tabindex: number;
}
