declare function normalize<T>(array: T[], key: keyof T): Record<typeof key, T>;

export { normalize };
