import { CssClassMap } from '../../interfaces'; export declare class ClaProgressCircle { /** * The percentage of completion of the progress circle - this automatically created from the percentage number */ percentage?: number; /** * The primary color which affects the percentage bar color and the percentage text color */ primarycolor: string; /** * The size of the progress circle - defaults to 90px but can set to any size in px, em, rems. */ size: string; /** * Whether to use the inverted variant of the progress circle. */ inverted: false; /** * Using the customtext attribute you can add text in place of the percentage number */ customtext: string; getClassMap(): CssClassMap; render(): any; }