export default function withKey<T>(arr: T[], keyPrefix: string): (T & {
    key: string;
})[];
