import type { ReactNode, FunctionComponent } from 'react'; import type { RemoteComponentType, PropsForRemoteComponent } from '@remote-ui/core'; export type ReactPropsFromRemoteComponentType> = PropsForRemoteComponent & { children?: ReactNode; }; export type ReactComponentTypeFromRemoteComponentType> = FunctionComponent>; //# sourceMappingURL=utilities.d.ts.map