/// import PropTypes from 'prop-types'; /** * * Component to use to agrupate items in a list of any dropdown. * @component GroupedItemTemplate * @name GroupedItemTemplate * @description Template for the grouped items in the dropdown * @version 2.0. * @author: Juan David Avila Caycedo [JuanDAC] (https://github.com/JuanDAC) * @returns {JSX.Element} */ declare const GroupedItemTemplate: { ({ label, image }: { label: string; image: string; }): JSX.Element; propTypes: { label: PropTypes.Requireable; image: PropTypes.Requireable; }; }; export { GroupedItemTemplate };