import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface InputNumberPrefixProps extends ComposableProps<'span'> { /** * Prefix content. */ children: React.ReactNode; } /** * InputNumberPrefix Component * * A composable component for prefix 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 InputNumberPrefix: React.ForwardRefExoticComponent>; //# sourceMappingURL=InputNumberPrefix.d.ts.map