import { EBadgeType, IBadge } from './badge.types'; /** * @part badge - The badge. */ export declare class KvBadge implements IBadge { /** (optional) Defines the badge type.*/ type: EBadgeType; /** (optional) If `true` the badge is in disabled state. */ disabled: boolean; render(): any; }