import { default as React } from 'react'; export interface TableAutocompleteItemProps { /** * String representation of the option. */ value: string; /** * Custom typeahead string. By default, typeahead uses `value`. */ searchValue?: string; children?: React.ReactNode; } declare const TableAutocompleteItem: React.FC; export default TableAutocompleteItem; //# sourceMappingURL=Item.d.ts.map