import type { TableDeps } from '../baseTable'; import Table from '../baseTable'; /** * Subclass of `Table` that provides the helper methods relevant to bottomInlineStartCornerOverlay * (in RTL mode the overlay sits on the right of the screen), implemented through mixins. * * @mixes stickyRowsBottom * @mixes stickyColumnsStart */ declare class BottomInlineStartCornerOverlayTable extends Table { /** * @param {TableDeps} deps The table module dependencies. */ constructor(deps: TableDeps); } export default BottomInlineStartCornerOverlayTable;