import { BehaviorSubject } from 'rxjs'; import { IMTableHighlightCell, IMTableScrollToCell } from './typings'; export declare class MTableService { /** * 不建议在外部直接调用,请使用 scrollToCell 方法 */ scroll$: BehaviorSubject; /** * 不建议在外部直接调用,请使用 highLightCells 方法 */ highlightCells$: BehaviorSubject; scrollToCell(params: IMTableScrollToCell): void; highlightCells(params: IMTableHighlightCell[]): void; }