import React from 'react'; import { ITypeSuggestions } from '../../hooks/useSuggestions'; interface IStyleObject { wrapper?: React.CSSProperties; icon?: React.CSSProperties; input?: React.CSSProperties; } export interface IInputProps { iconSrc?: any; value?: string; onChange: (changeEvent: { [name: string]: string; }) => void; labelText?: string; name?: string; id?: string; className?: string; style?: IStyleObject; readOnly?: boolean; typeSuggestions?: ITypeSuggestions; autoComplete?: string; type?: string; step?: number; min?: number; max?: number; borderRadius?: 'top' | 'bottom' | 'both'; maxLength?: number; autoFocus?: boolean; hasError?: boolean; hideLabel?: string; showLabel?: string; helperText?: string; dataCy?: string; } export declare const StatelessInput: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=index.d.ts.map