/// /** https://github.com/Microsoft/TypeScript/issues/29729 */ export type LiteralUnion = T | (string & {}); export type AnyObject = Record; export type CustomComponent

= React.ComponentType

| string;