import { Provider } from 'react'; export interface RenderStrategyProps { /** * Whether to enable lazy mounting * @default false */ lazyMount?: boolean | undefined; /** * Whether to unmount on exit. * @default false */ unmountOnExit?: boolean | undefined; } export declare const RenderStrategyPropsProvider: Provider, useRenderStrategyPropsContext: () => RenderStrategyProps; export declare const splitRenderStrategyProps: (props: T) => [RenderStrategyProps, Omit];