import React from 'react'; export interface FeatureListItemData { icon: React.ReactNode; title: string; description: string; } export interface FeatureListProps { items: FeatureListItemData[]; className?: string; iconBoxSize?: number; } export declare function FeatureList({ items, className, iconBoxSize, }: FeatureListProps): React.JSX.Element; //# sourceMappingURL=feature-list.d.ts.map