export type AllWithObjectFunction<T> = () => Promise<{
    [key in keyof T]: Awaited<T[key]>;
}>;
export default function allWithObject<T extends Record<string, Promise<unknown> | unknown>>(values: T): AllWithObjectFunction<T>;
