import { InputHTMLAttributes } from 'react'; import { StyleProps } from '../../style-engine'; import { FormElementProps } from './types'; declare const inputStyles: import('../../style-engine').StylesDef<{ state: { disabled: string; readonly: string; }; } & { state: { default: string; error: string; }; size: { sm: string; md: string; lg: string; }; }>; type InputStyleProps = StyleProps; export interface InputProps extends Omit, 'size' | keyof InputStyleProps>, InputStyleProps, FormElementProps { } export declare function Input({ size, invalid, error, errorId, type, 'aria-invalid': ariaInvalidProp, 'aria-describedby': ariaDescribedByProp, className, ...props }: InputProps): import("react").JSX.Element; export {};