import { SIZE } from './styles.constants'; import { PaginationSize } from '../feature-pagination/types'; import { CSSObject } from 'styled-components'; import { ActiveTheme, ActiveViewModsType, HighlightActiveType } from '..'; export declare const tableBorderRadius: (borderTopLeftRadiusRounded: boolean | undefined, borderTopRightRadiusRounded: boolean | undefined, borderBottomLeftRadiusRounded: boolean | undefined, borderBottomRightRadiusRounded: boolean | undefined) => import('styled-components').FlattenSimpleInterpolation; export declare const scrollbarStyles: import('styled-components').FlattenInterpolation>; export declare const rowIColumnStyles: import('styled-components').FlattenSimpleInterpolation; export declare const fullScreenStyles: import('styled-components').FlattenInterpolation>; export declare const ContainerStyled: import('styled-components').StyledComponent<"div", import('styled-components').DefaultTheme, { $activeView: ActiveViewModsType; $isHaveRowHeightAnimation: boolean | undefined; $columnsGroupingIsActive: boolean; $borderLeftTopRadiusRounded: boolean | undefined; $borderRightTopRadiusRounded: boolean | undefined; $borderLeftBottomRadiusRounded: boolean | undefined; $borderRightBottomRadiusRounded: boolean | undefined; $fullScreened: boolean; $rowHeight: SIZE; $containerCss?: string | CSSObject | undefined; $css?: string | CSSObject | undefined; $isCollapsed?: boolean | undefined; $isEnabledCollapse?: boolean | undefined; $highlightActiveType: HighlightActiveType; $activeTheme: ActiveTheme; }, never>; export declare const HEIGHT_CONTROL_BLOCK = 41; export declare const HEIGHT_FILTERLIST_BLOCK = 33; export declare const HEIGHT_TABLE_DEFAULT = 350; export declare const MIN_CONTENT_HEIGHT = 316; export declare const getTableHeightStyles: (tableContainerHeight: string | number | undefined, tableContainerMaxHeight: string | number | undefined, isHaveControlBlock: boolean | undefined, filtersAreVisible: boolean, fullScreened: boolean, paginationActiveInConfig: boolean, paginationHeight: number, paginationCustomSize: PaginationSize | undefined, isSearchingBellow: boolean, isCollapsed: boolean, collapseButtonPlacement?: 'inside' | 'above') => { height: string | undefined; maxHeight: string | undefined; };