import './style.scss'; import type { IExpandEntry, ISection } from '../types'; import type { JSX } from 'react'; export interface ISectionProps { section?: ISection; isLastSection?: boolean; expandEntry: IExpandEntry; } export declare const Section: (props: ISectionProps) => JSX.Element;