import React from 'react'; import { UseValidationProps } from '@interface-technologies/iti-react-core'; export type ValidatedInputOmittedHtmlProps = 'id' | 'name' | 'disabled' | 'value' | 'onChange'; export interface ValidatedInputProps extends UseValidationProps { id?: string; type?: string; autoComplete?: string[]; className?: string; enabled?: boolean; inputAttributes?: Omit, ValidatedInputOmittedHtmlProps> | Omit, ValidatedInputOmittedHtmlProps>; } export declare const ValidatedInput: React.MemoExoticComponent<({ id, type, autoComplete, showValidation, className, enabled, name, ...otherProps }: ValidatedInputProps) => import("react/jsx-runtime").JSX.Element>;