import React from 'react'; import './styled.scss'; declare type Options = { value: string | number; }; interface IAutoCompleted { disabled?: boolean; typeElement?: string | null; style?: unknown; placeholder?: string; options: Array; onSearch?: (Options: any) => void; onSelect?: (Options: any, value: Record) => void; onFocus?: () => void; onBlur?: () => void; onError?: (error: any, payload: Record) => void; value?: string; defaultValue?: string; } declare const AutoCompleted: React.FC; export default AutoCompleted;