interface RenderStrategyProps { /** * Whether to enable lazy mounting * @default false */ lazyMount?: boolean; /** * Whether to unmount on exit. * @default false */ unmountOnExit?: boolean; } export type { RenderStrategyProps as R };