import React from 'react'; declare type Props = { 'data-qa'?: string; columns: Column[]; rows: object[]; }; declare const TableCompact: React.FC; export interface Column { 'data-qa'?: string; id: string; label: string; type?: 'action' | 'date_time' | 'file' | 'icon' | 'money' | 'number' | 'text' | 'jsx'; width?: string | number; } export default TableCompact;