declare function invert>(object: T): Inverted; type Inverted> = { [K in keyof T as T[K]]: K; }; export { invert as i };