/** * LoadingAmount Component * * Displays amount with skeleton loading state during currency switch. * Only shows skeleton when isRateLoading is true (currency switch scenario). */ import type { SxProps, Theme } from '@mui/material'; export interface LoadingAmountProps { value: string; loading?: boolean; skeletonWidth?: number; height?: number; sx?: SxProps; animateValueChange?: boolean; transitionDuration?: number; } export default function LoadingAmount({ value, loading, skeletonWidth, height, sx, animateValueChange, transitionDuration, }: LoadingAmountProps): import("react").JSX.Element;