import React from 'react'; import { SxProps } from '@mui/material'; import type { Theme } from 'src/theme/muiTheme'; export interface ReviewCardProps { title: string; onEditClick: () => void; sx?: SxProps; } export declare const ReviewCard: React.FC;