import type { ContentNode } from '../ContentNode.js'; import { TungstenStatefulComponent, TungstenComponentPropsBase } from '../Components.jsx'; type AwaitProps = TungstenComponentPropsBase & { promise: Promise; children?: ContentNode | ((result?: unknown) => ContentNode); }; type AwaitState = { done: boolean; result: unknown; }; export declare class Await extends TungstenStatefulComponent { state: AwaitState; init: () => void; content: () => ContentNode; } export {}; //# sourceMappingURL=Await.d.ts.map