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