export interface FeatureListItem { id: string; title: string; description?: string; icon?: 'check' | 'bolt' | 'shield' | 'spark'; } interface FeatureListProps { title?: string; items?: FeatureListItem[]; class?: string; } declare const FeatureList: import("svelte").Component; type FeatureList = ReturnType; export default FeatureList;