// Components.d.ts — the complete catalog of the 1 component(s) in
// Components.bundle.js. READ THIS FILE BEFORE USING THE BUNDLE: component
// names are derived from Figma layer names (sanitized to PascalCase,
// deduplicated) and may differ from what the design calls them — the
// "figma layer" comment above each interface maps them back.
// After the bundle <script> loads, every component is a window global
// (e.g. window.HomePageV1) and usable directly in JSX.
import * as React from 'react';

// figma layer: "Home page V1" (node 2:4)
export interface HomePageV1Props {
  className?: string;
  style?: React.CSSProperties;
}

declare const HomePageV1: React.FC<HomePageV1Props>;
declare global {
  interface Window {
    HomePageV1: React.FC<HomePageV1Props>;
  }
}
