import type { PropsWithChildren } from 'react'; export type LoadingProps = PropsWithChildren<{ id?: string; className?: string; page?: boolean; reload?: boolean; onReloadClick?: () => void; }>; declare const Component: { ({ id, className, children, page, reload, onReloadClick, }: LoadingProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Component;