/** Selection mode that supported by {@link Table} */
export declare enum TableSelectionType {
    /** All rows will be selected expect rows in {@link TableSelection.unselectedIds} */
    Exclude = "exclude",
    /** Only rows in {@link TableSelection.selectedIds} will be selected */
    Include = "include"
}
/** Sort order */
export declare enum SortOrder {
    /** Ascending sort order */
    Asc = "asc",
    /** Descending sort order */
    Desc = "desc"
}
/** Header height in px */
export declare const HEADER_HEIGHT = 40;
/** One row height in px */
export declare const ROW_HEIGHT = 50;
/**
 * Maximum table body height in px with sticky header and footer.
 */
export declare const STICKY_OFFSET: number;
