import { type SxProps } from '@mui/material'; interface DynamicPricingUnavailableProps { error?: string; onRetry?: () => void | Promise; showRetry?: boolean; sx?: SxProps; } export default function DynamicPricingUnavailable({ error, onRetry, showRetry, sx, }: DynamicPricingUnavailableProps): import("react").JSX.Element; export {};