import type { DataAccessObject, DomBindings } from '../types'; import type Settings from '../settings'; import Table from '../table'; /** * 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 {TableDao} dataAccessObject The data access object. * @param {FacadeGetter} facadeGetter Function which return proper facade. * @param {DomBindings} domBindings Bindings into DOM. * @param {Settings} wtSettings The Walkontable settings. */ constructor(dataAccessObject: DataAccessObject, facadeGetter: Function, domBindings: DomBindings, wtSettings: Settings); } export default BottomInlineStartCornerOverlayTable;