import { Attributes, Component } from 'jinge'; export interface BadgeAttrs { content?: string; dense?: boolean; position?: 'top' | 'bottom'; } export declare class Badge extends Component { static template: string; content: string; dense: boolean; position: BadgeAttrs['position']; constructor(attrs: Attributes); }