// Re-export types from their specific modules export type { Service } from './service'; export interface AccordionItemProps { title: string; children: React.ReactNode; isOpen: boolean; onToggle: () => void; }