import { NumberInputProps as ChakraNumberInputProps, SystemStyleObject } from '@chakra-ui/react'; export interface NumberInputProps extends ChakraNumberInputProps { /** * Whether the input is in a prefilled state. */ isPrefilled?: boolean; /** * Whether the input is in a success state. */ isSuccess?: boolean; /** * Whether to show the increment and decrement steppers. Defaults to true. */ showSteppers?: boolean; /** * Merge styles for inner input field */ inputStyles?: SystemStyleObject; } export declare const NumberInput: import("@chakra-ui/react").ComponentWithAs<"input", NumberInputProps>;