import { ComponentType, ReactNode } from 'react'; interface AsyncSuspenseProps { type: 'component' | 'page'; chunkName: string; moduleId: string; innerProps: any; getLoading?: () => ComponentType; getFallback?: () => ComponentType; getChildren: () => Promise; } declare const AsyncSuspense: React.FC; export default AsyncSuspense;