import { SxProps, Theme } from '@mui/material/styles'; interface CouponProps { amount: string; label: string; sx?: SxProps; } declare const Coupon: ({ amount, label, sx }: CouponProps) => import("react/jsx-runtime").JSX.Element; export default Coupon;