```typescript
export type FromToValueMap = {
[key in ValidJsxPropertyValueAsKey]?:
| ValidJsxPropertyValueAsValue
| FromToValueMapModifierFn
/**
* otherwise, provide an array of new values.
*
* if array contains exactly 1 element:
* will replace the value automatically;
*
* else, if array contains >1 element:
* will replace the value with the 1st one from the array, and
* will add a comment, prefixed with "TODO CODEMOD MANUAL INTERVENTION", to make the user verify themselves.
*/
| ArrayWithAtLeastOneElement<ValidJsxPropertyValueAsValue>;
};```