export * from './generated' export * from './types' export type PrimitiveProps = { object: T } & Partial export const Primitive = ('primitive' as any) as (props: PrimitiveProps) => JSX.Element export type NewProps unknown> = Partial> & { object: T args: ConstructorParameters } export const New = ('new' as any) as unknown>(props: NewProps) => JSX.Element