import type { Unbox } from "./types"; type Permutated = { [K in keyof T]: Unbox; }; export declare function permutateEntries>(entries: T): Permutated[]; export {};