declare const mapValues: <T, U>(obj: {
    [s: string]: T;
}, mapper: (value: T, key: string, index: number) => U | Promise<U>) => Promise<{
    [x: string]: U;
}>;
export default mapValues;
//# sourceMappingURL=mapValues.d.ts.map