import React from 'react'; interface SectionHeadingProps { title: string; /** Muted clause sitting on the title's baseline, not underneath it. */ hint?: React.ReactNode; /** Right-aligned controls (buttons, filters). */ action?: React.ReactNode; } const SectionHeading = ({ title, hint, action, }: SectionHeadingProps): JSX.Element => (