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 topInlineStartCornerOverlay * (in RTL mode the overlay sits on the right of the screen), implemented through mixins. * * @mixes stickyRowsTop * @mixes stickyColumnsStart */ declare class TopInlineStartCornerOverlayTable 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 TopInlineStartCornerOverlayTable;