import React from 'react'; import { BoxSystemProps } from './Box'; import { StyleConfig } from '../utils/styleConfig'; export declare type BadgeParts = { badge: ''; }; declare type BadgeDOMProps = React.ComponentPropsWithRef<'span'>; declare type BadgeStyleConfigProp = { styleConfig?: StyleConfig; }; declare type BadgeSystemProps = BoxSystemProps; export declare type BadgeProps = BadgeDOMProps & BadgeStyleConfigProp & BadgeSystemProps & { as?: React.ElementType; }; export declare const Badge: React.ForwardRefExoticComponent & React.RefAttributes>; export {};