/** * MoonCardContent - Main content rendering component * * Extracted to separate rendering logic from structural concerns * Follows Single Responsibility: only handles content display */ import type { Theme } from "@mui/material/styles"; import React from "react"; interface MoonCardContentProps { theme: Theme; moonIcon: string; formattedPhaseName: string; phaseDescription: string; zodiacSign: string; illuminationPercentage: number; } declare const MoonCardContent: React.FC; export default MoonCardContent;