export interface InputProps {
inputMode?: string; // стринг нужно заменить на "один из значений"
}
export const Input = (props: InputProps) => {}
export type HttpMethod = 'head' | 'get' | 'post' | 'put' | 'delete' | 'connect' | 'options' | 'trace'