/** * @short * *Create an object* from key-value pairs. * * @categories * static * * @description * Creates an object from the source iterable by using the first element * of a tuple for the key and the second element of the tuple for the value. * * @returns * Record * * @example * j.CreateObject([['a', 1], ['b', 2]]) * // => { a: 1, b: 2 } */ export declare function CreateObject(iterable: Iterable): Record;