import * as React from 'react'; export const DebugLine: React.FC<{ [key: string]: any; children: React.ReactNode; active?: boolean; indent?: number; style?: React.CSSProperties; badge?: string; actionable?: boolean; }> = ({ active, indent = 0, actionable, children, style, badge, ...rest }) => ( {children} {badge && {badge}} );