import { ComponentType } from "react"; declare type ComponentPromise = Promise<{ default: ComponentType; }>; export default function lazyRetry(component: () => ComponentPromise, retries?: number, interval?: number): React.LazyExoticComponent>; export {};