/** * {@link DTable} states. */ export declare const DTableState: { /** * Start cells in rows. */ START: string; /** * End cells in rows. */ END: string; /** * Cells of frozen columns. */ FROZEN: string; /** * Cells of a right-most frozen column. */ FROZEN_END: string; /** * Rows with data */ HAS_DATA: string; /** * Header cells of sortable columns. */ SORTABLE: string; /** * Header cells of columns sorted in the ascending order. */ SORTED_ASCENDING: string; /** * Header cells of columns sorted in the descending order. */ SORTED_DESCENDING: string; /** * Tree cells with child cells. */ HAS_CHILDREN: string; /** * Tree cells opened. */ OPENED: string; /** * Header cells of checkable columns. */ CHECKABLE: string; /** * Selectable row */ SELECTABLE: string; /** * Header or category cells hovered on their edges. */ HOVERED_ON_EDGE: string; /** * Header or category of being resized. */ RESIZING: string; };