import { ComponentInterface } from '../../stencil-public-runtime'; import { BadgeColors } from '../../utils/colors'; import { ElementSize } from '../../utils/propTypes'; export type Position = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'; export declare class BiBadge implements ComponentInterface { private inheritedAttributes; el: HTMLBiBadgeElement; /** * The count to be displayed in the badge. * @type {number} */ count?: number; /** * The color of the badge. */ color?: BadgeColors; /** * The size of the badge. */ size: ElementSize; /** * The position of the badge. * Can be 'top-left', 'top-right', 'bottom-left', or 'bottom-right'. */ position: Position; componentWillLoad(): Promise | void; render(): any; }