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