import React from "react"; import { IoniconsType } from "../../lib/types"; type AsyncContentProps = { isLoading: boolean; isVisible?: boolean; loadingIcon: IoniconsType; loadingText?: string; children?: React.ReactNode; }; export declare function AsyncContent({ isLoading, isVisible, loadingIcon, loadingText, children, }: AsyncContentProps): string | number | bigint | boolean | Iterable | Promise> | Iterable | null | undefined> | React.JSX.Element | null | undefined; export {}; //# sourceMappingURL=AsyncContent.d.ts.map