import React, { FC } from 'react'; declare type Props = { scrollToActive: boolean; children: (activeItemRef: React.MutableRefObject) => React.ReactNode; maxHeight?: number; scrollShadow?: boolean; }; declare const DropdownListContainer: FC; export default DropdownListContainer;