/** * Joins two untyped tables on the given columns. * @param leftColumn The column to join on in the first table. * @param rightColumn The column to join on in the second table. */ export declare const joinTables: (leftColumn: string, rightColumn: string, left: Record[], right: Record[]) => any[]; //# sourceMappingURL=join-tables.d.ts.map