import type { TableData } from '../../core/lib/dataObj'; import type { DataRow as DataRowType } from '../../core/lib/types'; interface DataRowProps { row: DataRowType; table: TableData; } declare const DataRow: import("svelte").Component; type DataRow = ReturnType; export default DataRow; //# sourceMappingURL=DataRow.svelte.d.ts.map