import { ReactNode } from 'react'; export interface StructuredItemProps { content: ReactNode; icon?: ReactNode; actions?: ReactNode; secondaryContent?: ReactNode; disablePaddings?: boolean; wrapActions?: boolean; }