--- import { Image } from "astro:assets"; interface Props { interval?: number; images: any; } const { interval = 3000, images } = Astro.props; ---