import React from 'react'; import './index.less'; export interface LeftTableProps { MODELCLASS: string; offsetHeight: number; ORDERBYCLAUSE: string; INITWHERECLAUSE: string; WHERECLAUSE: string; ADFIELDLIST: any[]; onChange: (val: any) => void; searchParam?: any; createRefresh?: any; onDataListChange: (val: any) => void; } declare const LeftTable: React.FC; export default LeftTable;