import {Item} from './Select' export default interface Input { name: string value?: T onChange: (value: T) => void items?: Item[] }