import HtmlNode from '../Extension/HtmlNode';
interface OverflowGridListProps {
id: string;
onClick?: () => void;
}
declare class OverflowGridList extends HtmlNode {
private readonly props;
overflowElement?: HTMLUListElement | null;
private timeout?;
private contexts;
constructor(element: HTMLElement, props: OverflowGridListProps);
onPrev(): void;
onNext(): void;
scrollHandler(): void;
render(): void;
}
export default OverflowGridList;