import { TableCellWidthProps, TableMode, TableNavigation } from '../types/index.js'; export declare const getColumnWidthPercentage: (widthInPx: number, options?: { isFirst?: boolean; isLast?: boolean; }) => string; export declare const getCellWidth: ({ table, cellID, tableMode }: TableCellWidthProps) => string; export declare const calculateMaxAllowedRows: (isLoaded: boolean, isLoading: boolean) => number; export declare const isHeightNotFullyFilledByRows: (totalRows: number) => boolean; export declare const isTableDefaultMode: (tableMode?: TableMode) => boolean; export declare const isTableSheetMode: (tableMode?: TableMode) => boolean; interface ActionNavigationView { prefixes: string[]; keys?: string[]; label: string; appCode: string; serviceCode: string; icon: TableNavigation['icon']; accessor?: (rowData: T) => string[]; } export declare const getPossibleActionNavigationView: () => Record>; export {};