export declare function dictionaryInvert<T extends string, U extends string>(dict: Record<T, U>): Record<U, T>;
