type HowItWorksProps = { title: string; items: Array<{ title: string; subtitle?: string; description: string; image: string; }>; getStartedLink?: string; colorScheme?: 'light' | 'dark'; }; export declare const HowItWorks: ({ title, getStartedLink, items, colorScheme }: HowItWorksProps) => import("react").JSX.Element; export {};