import { PropsWithChildren } from 'react'; interface LazyComponentProps { is: string; package?: string; props?: Record; ssr?: boolean; } export declare function LazyComponent({ is: name, props, children }: PropsWithChildren): JSX.Element | null; export declare function Loading({ text, error }: { text?: string; error?: string; }): JSX.Element; export {};