import * as react_jsx_runtime from 'react/jsx-runtime';
import { Severity } from '../../types/severity.mjs';

interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
    severity?: Severity;
    message?: string;
}
declare function Input({ severity, message, ...props }: InputProps): react_jsx_runtime.JSX.Element;

export { Input, type InputProps };
