import type { CardProps } from '@mui/material'; import type { BusyCircularProgressProps, BusyLinearProgressProps, BusyVariant } from '@xylabs/react-shared'; import type { PropsWithChildren } from 'react'; import React from 'react'; export interface BusyCardProps extends CardProps { busy?: boolean; busyMinimum?: number; busyVariant?: BusyVariant; busyVariantProps?: BusyCircularProgressProps | BusyLinearProgressProps; } export declare const BusyCard: React.FC>; //# sourceMappingURL=BusyCard.d.ts.map