/// import { Option } from 'amiya'; interface IProps { value: number | string; onChange: (value: string) => void; options: Array; } export default function TableTabs(props: IProps): JSX.Element; export {};