/**
 * corner Radius
 */
export const lineCapRadius: number = 0.9;
/**
 * complete Angle
 */
export const completeAngle: number = 359.99;
/**
 * valueChanged event
 */
export const valueChanged: string = 'valueChanged';
/**
 * progressCompleted event
 */
export const progressCompleted: string = 'progressCompleted';
/**
 * mouseClick event
 */
export const mouseClick: string = 'mouseClick';
/**
 * mouseDown event
 */
export const mouseDown: string = 'mouseDown';
/**
 * mouseUp event
 */
export const mouseUp: string = 'mouseUp';
/**
 * mouseMove event
 */
export const mouseMove: string = 'mouseMove';
/**
 * mouseLeave event
 */
export const mouseLeave: string = 'mouseLeave';
/**
 * svgLink
 */
export const svgLink: string = 'http://www.w3.org/2000/svg';
/**
 * gradient type
 */
export const gradientType: string = 'linearGradient';
/**
 * stop element
 */
export const stopElement: string = 'stop';
/**
 * Render for the tooltip.
 */
export const tooltipRender: string  = 'tooltipRender';
