import * as react_jsx_runtime from 'react/jsx-runtime';
import * as React from 'react';

type InputProps = React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> & {
    invalid?: boolean;
    startIcon?: React.ReactElement | string;
    endIcon?: React.ReactElement | string;
};
declare function Input({ invalid, startIcon, endIcon, disabled, className, ...props }: InputProps): react_jsx_runtime.JSX.Element;

export { Input, type InputProps };
