import { CSVImportUIColumns } from "./CSVImportUI"; export interface CSVImportUITableProps> { rows: Row[]; errors: ([string, string][] | undefined)[]; headers: string[]; renderCell?: (row: Row, header: string) => React.ReactNode; columns?: CSVImportUIColumns; } export declare const CSVImportUITable: >({ rows, errors, headers, columns, }: CSVImportUITableProps) => import("@emotion/react/jsx-runtime").JSX.Element;