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