import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface InputNumberControlsProps extends ComposableProps<'div'> { /** * Controls content (typically InputNumberButton components). */ children?: React.ReactNode; } /** * InputNumberControls Component * * A composable component for increment/decrement controls. * Typically wraps InputNumberButton components. * * @public * * @example * ```tsx * * * * * * * * * * ``` * * @remarks * - Wraps the HTML `
` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically renders controls based on controlsPosition from context. */ export declare const InputNumberControls: React.ForwardRefExoticComponent>; //# sourceMappingURL=InputNumberControls.d.ts.map