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