import React from 'react'; import './index.less'; export interface GComponentsProps { onChange: (val: any) => void; onReferChange: (val: any) => void; [propName: string]: any; } declare const GComponents: React.FC; export default GComponents;