export declare function arrayToObject<T>(arr: T[]): {
    [key: string]: T;
};
