import React from 'react'; declare type Props = { list: { title: string; content: T[]; }[]; renderItems: (content: T[], groupIndex: number) => React.ReactNode; scrollOnWindow?: boolean; }; declare const StickyList: (props: Props) => JSX.Element; export default StickyList;