import { ComponentWithAs as _, InputProps as ChakraInputProps } from '@chakra-ui/react'; export interface InputProps extends ChakraInputProps { /** * Whether the input is in a prefilled state. */ isPrefilled?: boolean; /** * Whether the input is in a success state. */ isSuccess?: boolean; } export declare const Input: _<"input", InputProps>;