import { CircularProgressProps } from '@mui/material'; interface Props { size?: number; color?: CircularProgressProps['color']; isInline?: boolean; } export declare const Loader: ({ size, color, isInline }: Props) => import("react/jsx-runtime").JSX.Element; export {};