import { ColorScheme } from '../../../types'; import { type BadgeProps } from '@chakra-ui/react'; import React from 'react'; interface Props extends BadgeProps { colorScheme?: ColorScheme; } declare const Component: React.ForwardRefExoticComponent>; export { Component as Badge, type Props as BadgeProps, };