import type React from "react"; interface Props extends React.ComponentPropsWithRef<"svg"> { inactive?: boolean; } export default function LoadingAnimation({ inactive }: Props): import("react/jsx-runtime").JSX.Element; export {};