import type { JSX } from "react"; import { type SectionItemProps } from "./SectionItem"; interface SectionItemWithContentProps extends Omit { text: string; icon?: string; iconClass?: string; } declare function SectionItemWithContent(props: SectionItemWithContentProps): JSX.Element; export default SectionItemWithContent;