import React from 'react'; /** * Main dashboard content area for the landing page. * * @description * Fetches feature cards via `useFeatureCards` (React Query). All UI strings are * translated via `useTranslation()` — change language via `LanguageSelector`. * * @ai-rules * 1. Data: Feature cards come from `useFeatureCards()` — never hardcode them here. * 2. i18n: Use `t('home.*')` for all UI strings — never hardcode text in JSX. * 3. Loading: Renders a skeleton card while the query is in-flight. */ export declare function HomeContent(): React.JSX.Element;