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