import * as React from 'react'; import { createComponent } from '@lit/react'; import { PieList as PieListLit } from './index'; import { type ListProps } from './defs'; export * from './defs'; const PieListReact = createComponent({ displayName: 'PieList', elementClass: PieListLit, react: React, tagName: 'pie-list', events: {}, }); type ReactBaseType = React.HTMLAttributes export const PieList = PieListReact as React.ForwardRefExoticComponent, 'children'>> & React.RefAttributes & ReactBaseType>;