import './index.less'; import React from 'react'; export type TableColumn = { title?: string; dataIndex: string; valueType?: 'option'; style?: React.CSSProperties; render?: (_: any, record: T, index: number) => React.ReactNode; }; export interface AutoScrollTableProps { data: T[]; columns: TableColumn[]; height?: string; width?: string; gridTemplateColumns?: string; id?: string; } declare function AutoScrollTable(props: AutoScrollTableProps): React.JSX.Element; export { AutoScrollTable };