export interface FeatureCardProps { icon?: string; title?: string; description?: string; centered?: boolean; flat?: boolean; className?: string; } export declare function FeatureCard({ icon, title, description, centered, flat, className, }: FeatureCardProps): import("react/jsx-runtime").JSX.Element;