import React from "react"; type SectionProps = { children: React.ReactNode; title?: string; subtitle?: string; headerAction?: React.ReactNode; testId?: string; }; declare const Section: React.FC; export default Section;