import { type NameOverrides } from '../constants/NameOverrides'; import { type PixiComponents } from './PixiComponents'; import { type PixiReactElementProps } from './PixiReactNode'; import type * as PIXI from 'pixi.js'; export type UnprefixedPixiElements = { [K in PixiComponents as K extends keyof typeof NameOverrides ? typeof NameOverrides[K] : Uncapitalize]: PixiReactElementProps; };