/**
 * Lets registry.ts (the sole .astro-importing module) typecheck under plain `tsc`.
 * Component types are erased at the ThemeComponent boundary in theme-contract.ts.
 */
declare module '*.astro' {
  import type { AstroComponentFactory } from 'astro/runtime/server/index.js';
  const component: AstroComponentFactory;
  export default component;
}
