import { ComponentInterface } from "../../stencil-public-runtime"; import { DuetIconSize, DuetMargin, DuetStatus } from "../../common-types"; export declare class DuetStatusIcon implements ComponentInterface { private bg; private color; /** * Status the icon indicates */ variation: DuetStatus; /** * Icon size. Entered as one of the icon size design tokens. */ size: DuetIconSize; /** * Controls the margin of the component. */ margin: DuetMargin; /** * Use strong background color when the icon would not otherwise stand out from the surrounding background. */ strong: boolean; private getVariation; private getBg; private getColor; private getIcon; render(): any; }