pub trait BuilderProxyInterface: Send + Sync {
    type BuildResponseFut: Future<Output = Result<BuilderBuildResult, Error>> + Send;
    // Required method
    fn build(
        &self,
        runner: ClientEnd<ComponentRunnerMarker>,
    ) -> Self::BuildResponseFut;
}