/// /** * The NumberInput component is similar to the Input component, but it has controls for incrementing or decrementing numeric values. * Chakra UI exports 5 components for the NumberInput. * NumberInput: The wrapper that provides context and logic to the components. * NumberInputField: The input field itself. * NumberInputStepper: The wrapper for the input's stepper buttons. * NumberIncrementStepper: The button to increment the value of the input. * NumberDecrementStepper: The button to decrement the value of the input. * https://chakra-ui.com/docs/form/number-input */ export declare function NumberInput({ ...props }: any): JSX.Element; export declare function NumberInputField({ ...props }: any): JSX.Element; export declare function NumberInputStepper({ ...props }: any): JSX.Element; export declare function NumberIncrementStepper({ ...props }: any): JSX.Element; export declare function NumberDecrementStepper({ ...props }: any): JSX.Element; //# sourceMappingURL=NumberInput.d.ts.map