import type { Dialect } from "@frictionless-ts/metadata"; export type DataRow = unknown[]; export type DataRecord = Record; export declare function getRecordsFromRows(rows: DataRow[], dialect?: Dialect): DataRecord[];