/// import { type BadgeContentRecipeVariants } from './BadgeContent.css'; import { type ElementProps } from '../../../../../types/element/elementProps'; export type BadgeOwnProps = BadgeContentRecipeVariants & { content: React.ReactNode; maximum?: number; }; export type BadgeContentProps = ElementProps<'span', BadgeOwnProps>; export declare function BadgeContent({ content, size, variant, color, maximum, ...spanProps }: BadgeContentProps): import("react/jsx-runtime").JSX.Element; export declare namespace BadgeContent { var displayName: string; } //# sourceMappingURL=BadgeContent.d.ts.map