import React, { ReactNode } from 'react';
export interface IDropDownDisplayProps extends React.HTMLAttributes<HTMLDivElement> {
    children: ReactNode;
}
declare const DropDownDisplay: React.ForwardRefExoticComponent<IDropDownDisplayProps & React.RefAttributes<HTMLDivElement>>;
export default DropDownDisplay;
