import type { TypographyProps } from '@mui/material';
type Props = {
    amount: string;
} & TypographyProps;
export default function PaymentAmount({ amount, sx }: Props): import("react").JSX.Element;
export {};
