import { BreakpointConfig } from './Table'; export declare enum SortDirection { asc = "asc", desc = "desc" } export declare enum HeaderCategory { normal = "normal", transparent = "transparent", sortable = "sortable" } export declare enum TextAlign { left = "left", center = "center", right = "right" } export declare enum ResponsiveTableVariant { /** No handling responsive behaviour. Default. */ none = "none", /** Overflow parent container to the left and right while remaining centered horizontally. */ centeredoverflow = "centeredoverflow", /** Show horizontal scrollbar when table is too big for the screen. */ horizontalscroll = "horizontalscroll", /** Collapse to two columns. */ block = "block" } export declare enum ModeType { compact = "compact", normal = "normal" } export declare const defaultConfig: BreakpointConfig[]; export declare const simpleConfig: BreakpointConfig[];