import { ReactNode } from 'react'; declare type LightSectionProps = { heading: string; children: ReactNode; }; export default function LightSection({ heading, children, }: LightSectionProps): JSX.Element; export {};