import * as React from 'react';

type InputProps = React.ComponentProps<"input"> & {
    invalid?: boolean;
};
declare function Input({ className, type, invalid, ...props }: InputProps): React.JSX.Element;

export { Input, type InputProps };
