import { SxProps } from '@mui/material'; import { Theme } from '../../../theme/muiTheme'; import { ImageType } from '../../../types/shared/imageType'; export interface Props { icon: ImageType; label: string; sx?: SxProps; } declare const CardRibbon: ({ icon, label, sx }: Props) => JSX.Element; export { CardRibbon };