export default interface Input { name: string; value?: T; onChange: (value: T) => void; }