/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import {EntryPointComponent, PreloadedEntryPoint} from '../ReactRelayTypes'; import { ReactElement } from 'react'; type GetComponentFromPreloadedEntryPoint = T extends PreloadedEntryPoint ? C : never; type GetRuntimePropsFromComponent = T extends EntryPointComponent ? R : never; export function EntryPointContainer>({ entryPointReference, props, }: Readonly<{ entryPointReference: TPreloadedEntryPoint; props: GetRuntimePropsFromComponent>; }>): ReactElement; export {};