import React from 'react'; import { TextFieldProps } from '@material-ui/core'; interface IOption { label: string; value: string | boolean | number; } export interface IAutocompleteProps { name: string; fullWidth?: boolean; title?: string; required?: boolean; options: Array; } export declare const Autocomplete: React.FC; export {}; //# sourceMappingURL=index.d.ts.map