import { FeaturedItemProps } from '../../main'; import { PropsWithChildren } from 'react'; export interface CategorySelectorProps extends PropsWithChildren { id: string; title: string; category: string; section: string; subcategory?: string; insights?: FeaturedItemProps[]; hideLink?: boolean; hideMore?: boolean; } export declare const CategorySelector: (props: CategorySelectorProps) => import("react").JSX.Element; export declare const InsightItem: (props: FeaturedItemProps) => import("react").JSX.Element;