import './style.scss'; import type { IEntry } from '../types'; import type { JSX } from 'react'; export interface IExpansionOverlayProps { entry?: IEntry; trackRef?: React.RefObject; } export declare const ExpansionOverlay: (props: IExpansionOverlayProps) => JSX.Element;