import { DynamicDataTableProps, DynamicDatatableProperty } from '../../../types/canvas'; /** * Calculate the background color for a table row based on striping configuration * @param idx - The row index (0-based) * @param data - The dynamic data table props containing striping configuration * @param themeVars - The theme variables containing color values * @returns The background color string for the row */ export declare function getRowBackgroundColor(idx: number, data: DynamicDataTableProps | undefined, themeVars: Record): string; /** * Format a cell value based on the property's format configuration * @param value - The raw value to format * @param property - The property configuration including format settings * @returns The formatted string representation of the value */ export declare function formatCellValue(value: any, property: DynamicDatatableProperty): string;