--- import type { ComponentProps } from 'astro/types'; import Base from './Base.astro'; type Props = Omit, 'title'> & { title: string }; const { title, description } = Astro.props; if (!title) { throw new Error('Page layout requires a `title` prop.'); } ---