declare function combinate<O extends Record<string | number, any[]>>(obj: O): { [k in keyof O]: O[k][number]; }[];
export default combinate;
