import React from 'react'; import './index.less'; export interface GInputProps { [propsName: string]: any; onChange: (value: any) => void; } declare const GInput: React.FC; export default GInput;