/// import { InputProps as AntdInputProps } from 'antd/lib/input'; export interface InputProps extends Omit { quickchange?: boolean; value: string; onChange: (val: string) => void; } export declare function Input(props: InputProps): JSX.Element;