import React from 'react'; import type { StyledProps } from '../common'; import type { TdBadgeProps } from './type'; export interface BadgeProps extends TdBadgeProps, StyledProps { } declare const Badge: React.ForwardRefExoticComponent>; export default Badge;