import ScalarDict from './ScalarDict.js'; import { Column } from './Column.js'; import React from 'react'; interface RowProps { fillerChar: string; rowKey: string; data: Partial; columns: Column[]; ignoreColumnColor?: boolean; } declare const Row: ({ rowKey, columns, data, fillerChar, ignoreColumnColor }: RowProps) => React.JSX.Element; export { Row };