import React from "react"; import { CSSObject } from "create-emotion"; import { TColor, IComponent } from "../types"; interface AutocompleteProps extends IComponent { label: string; id: string; name: string; placeholder: string; defaultValue: string; color: TColor; isFluid: boolean; isDisabled: boolean; autocomplete: []; icon: React.ReactChild; onChange: (value: string) => void; } declare const Autocomplete: React.StatelessComponent export default Autocomplete