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