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