export default function flipObjectKeyVals<Key extends string = string, Val extends string = string>(obj: Record<Key, Val>): Record<Val, Key>;
