import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface InputNumberWrapperProps extends ComposableProps<'div'> { /** * Wrapper content (typically InputNumberField, InputNumberControls, etc.). */ children?: React.ReactNode; } /** * InputNumberWrapper Component * * A composable component for the container wrapper of an InputNumber. * Typically wraps InputNumberField and InputNumberControls. * * @public * * @example * ```tsx * * * * * * * ``` * * @remarks * - Wraps the HTML `
` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically styled with border, focus states, and error states. */ export declare const InputNumberWrapper: React.ForwardRefExoticComponent>; //# sourceMappingURL=InputNumberWrapper.d.ts.map