import React from 'react'; import { BadgeProps } from './Badge.types'; /** * Badges can be used to highlight information or the status of something. */ declare function Badge({ children, variant, className, darkMode: darkModeProp, ...rest }: BadgeProps): React.JSX.Element; declare namespace Badge { var displayName: string; } export default Badge; //# sourceMappingURL=Badge.d.ts.map