import * as React from "react"; export type AsyncBoundaryProps = React.PropsWithChildren<{ loading?: boolean; error?: unknown; empty?: boolean; loadingTitle?: React.ReactNode; errorTitle?: React.ReactNode; emptyTitle?: React.ReactNode; onRetry?: () => void; }>; declare function AsyncBoundary({ loading, error, empty, loadingTitle, errorTitle, emptyTitle, onRetry, children, }: AsyncBoundaryProps): React.JSX.Element; export { AsyncBoundary };