import { CLBorderRadius, CLColors, CLColorVariants } from '../../../index.ts'; export interface CLBadgeProps { /** The border radius size. The property can be one of `CLBorderRadius`, e.g. `CLBorderRadius.Medium`. */ borderRadius?: CLBorderRadius; /** Sets the color of the Badge. The property can be one of `CLColors`, e.g. `CLColors.Primary`. */ color?: CLColors; /** The `elevated` property displays a shadow to indicate elevation. */ elevated?: boolean; /** The count to display in the Badge. */ label: string | number; /** The maximum amount of characters to display. Once the amount characters goes beyond the limit, a plus sign is added after the displayed characters. */ limit?: number; /** Sets a custom ID used for unit tests. */ testId?: string; /** Sets the color variant. The property can be one of `CLColorVariants`, e.g `CLColorVariants.Soft`. */ variant?: CLColorVariants; } declare const _default: import('vue').DefineComponent & Readonly<{}>, { color: CLColors; variant: CLColorVariants; testId: string; elevated: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; export default _default;