import { Tabulator, MoveRowsModule, RowComponent, Row } from '../tabulator_esm.js'; declare class CustomMoveRowsModule extends MoveRowsModule { constructor(table: Tabulator); startMove(e: any, row: Row): void; initializeRow(row: RowComponent): void; createPlaceholderElement(): HTMLDivElement; moveHover(e: any): void; endMove(e: any): void; _endMove(e: any): void; moveRowToChild(destRowComponent: any, srcRowComponent: any, childComponent?: null, after?: boolean): void; moveRowToRoot(destRowComponent: any, srcRowComponent: any, after?: boolean): void; calcSortIndex(destRow: RowComponent, after: boolean): any; } export { CustomMoveRowsModule };