export interface TableOptions { backgroundColor?: string; color?: string; headerHeight?: number; headerBackgroundColor?: string; headerColor?: string; alternativeBackgroundColor?: string; alternativeColor?: string; rowHeight?: number; } export type RowClickHandler = (row: any) => void;