--- import type { Description } from '@/types/shared'; import Typography from './typography.astro'; export interface Props { content: Description; class?: string; } const { content, ...props } = Astro.props; ---