import type { TableDeps } from '../baseTable'; import Table from '../baseTable'; /** * 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 {TableDeps} deps The table module dependencies. */ constructor(deps: TableDeps); } export default TopInlineStartCornerOverlayTable;