import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; /** * BadgeText component props * * @public */ export interface BadgeTextProps extends ComposableProps<'span'> { /** * Text content */ children: React.ReactNode; } /** * BadgeText Component * * A composable text wrapper for badges. * Can be used within Badge or standalone with asChild. * * @public * * @example * ```tsx * // Within Badge * * * Active * * * // With asChild * * Bold Text * * ``` * * @remarks * - Wraps badge text content with consistent styling * - Supports `asChild` prop for custom element composition * - Use with BadgeIcon for complete badge composition */ export declare const BadgeText: React.ForwardRefExoticComponent>; //# sourceMappingURL=BadgeText.d.ts.map