/** * Basic badge component. Can be used to display small information on top of other elements. Typically * used to display things on top of product. * * @slot default - Badge content * @csspart badge-content The content of the badge * @csspart badge-base The container of the badge */ export declare class KlevuBadge { /** Setting a accent color to badge (1-4) */ accent?: number; /** Setting a neutral color to badge (1-8) */ neutral?: number; render(): any; }