import * as react from 'react'; import { HTMLAttributes } from 'react'; interface FeatureCardProps extends Omit, 'title'> { icon?: React.ReactNode; title: React.ReactNode; description: React.ReactNode; } declare const FeatureCard: react.ForwardRefExoticComponent>; export { FeatureCard, type FeatureCardProps };