/**
 * Converts an array in to an object with the id as the key.
 * @param arr the array of objects
 * @returns object with the id as the key
 */
export declare function fromArray(arr: any[], idKey?: string, valueKey?: 'all' | string): any;
