import * as react_jsx_runtime from 'react/jsx-runtime'; import { FunctionComponent } from 'react'; import { Key, AwaitOptions, Awaited } from './types.js'; /** * @experimental This is experimental feature. */ type AwaitProps = { options: AwaitOptions; children: FunctionComponent>; }; /** * @experimental This is experimental feature. */ declare const Await: ({ children: Children, options }: AwaitProps) => react_jsx_runtime.JSX.Element; export { Await, type AwaitProps };