import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface InputNumberSuffixProps extends ComposableProps<'span'> { /** * Suffix content. */ children: React.ReactNode; } /** * InputNumberSuffix Component * * A composable component for suffix content in an InputNumber. * Typically used within InputNumberWrapper. * * @public * * @example * ```tsx * * * % * * ``` * * @remarks * - Wraps the HTML `` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically styled with proper spacing and text color. */ export declare const InputNumberSuffix: React.ForwardRefExoticComponent>; //# sourceMappingURL=InputNumberSuffix.d.ts.map