--- import type { SlCarouselItem } from '@shoelace-style/shoelace'; import type { HTMLAttributes } from 'astro/types'; interface Props extends Omit, Partial> { /** The index of the item in the carousel. */ index?: number; } const { index, ...rest } = Astro.props; ---