import { SxProps, Theme } from '@mui/material/styles'; interface SaveAnExtraCardProps { primaryText?: string[]; secondaryText?: string[]; bgcolor?: string; sx?: SxProps; } declare const SaveAnExtraCard: ({ primaryText, secondaryText, bgcolor, sx, }: SaveAnExtraCardProps) => import("react/jsx-runtime").JSX.Element; export default SaveAnExtraCard;