/** * @fileoverview Feature card with icon, title, and description. * @author Saasflareâ„¢ * The most reused card pattern on any SaaS site. Simple and composable. * @module packages/ui/components/ui/feature-card * @package ui * * @component * @example * import { FeatureCard } from '@saasflare/ui'; * } * title="Lightning Fast" * description="Deploy in under 30 seconds with zero configuration." * /> */ import { type ReactNode } from "react"; import { type SaasflareComponentProps } from "../../providers"; /** Props for the FeatureCard component. */ export interface FeatureCardProps extends SaasflareComponentProps { /** Icon element displayed at the top. */ icon?: ReactNode; /** Feature title. */ title: string; /** Feature description text. */ description: string; /** Additional class names. */ className?: string; } /** * Feature card with icon, title, and description. * * @component * @package ui */ export declare function FeatureCard({ icon, title, description, className, surface, radius, animated, iconWeight, }: FeatureCardProps): import("react/jsx-runtime").JSX.Element;