import React from 'react'; import { LifecyclePhase } from '@workbench-stack/core'; export type WithFalse = T | false; export interface LifecycleProps { children?: any; setPhaseReady?: boolean; setPhase?: LifecyclePhase; renderWhenPhase?: LifecyclePhase; loadingRender?: WithFalse<(props: any) => React.ReactNode>; } export declare const Lifecycle: React.FC;