import React from 'react';
/**
 * __Group title__
 *
 * Used to visually represent the title for DropdownMenu groups
 *
 * @internal
 */
declare const GroupTitle: ({ id, title }: {
    id: string;
    title: string;
}) => React.JSX.Element;
export default GroupTitle;
