import type { ComponentPropsWithRef, ComponentType, ExoticComponent } from 'react'; import type { CompProps } from './Composition.js'; type LazyExoticComponent> = ExoticComponent> & { readonly _result: T; }; export declare const useLazyComponent: (compProps: CompProps) => LazyExoticComponent>; export {};