--- import type { HTMLAttributes } from "astro/types"; interface Props extends HTMLAttributes<"div"> { zIndex?: number; } const { zIndex = 0, ...rest } = Astro.props; ---