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

interface InputShakeProps {
    severity?: Severity;
}
/**
 * We need this hack to avoid shaking the input when it's first rendered
 * already as critical.
 */
declare function InputShake({ severity }: InputShakeProps): react_jsx_runtime.JSX.Element;

export { InputShake };
