import React from 'react'; import "./SconeInput.scss"; interface InputProps { type: "text" | "password" | "number"; value: string; adornment?: string; name?: string; placeholder?: string; min?: string; handleChange: (event: React.ChangeEvent) => void; handleKeyUp?: (event: React.KeyboardEvent) => void; } declare const SconeInput: (props: InputProps) => JSX.Element; export default SconeInput;