import {RemoteComponentType} from '@remote-ui/types'; export function createRemoteComponent< Type extends string, Props = Record, AllowedChildren extends RemoteComponentType | boolean = true, >( componentType: Type, ): Type & RemoteComponentType { return componentType as any; }