/** Concats arrays but does so like a zipper instead of appending them. Like lodash.zip + lodash.flat, plus a total limit */
export declare function flatZip<T>(table: T[][], limit?: number): T[];
