import type {RemoteRoot, RemoteComponentType} from '@remote-ui/core'; export interface Extension { (api: Api): Result; } export interface RenderExtension< Api, AllowedComponents extends RemoteComponentType< string, any, any > = RemoteComponentType, > { ( root: RemoteRoot, api: Api, ): void | Promise; }