import DropdownItem from "./Dropdown.Item.js"; export type DropdownGroupProps = { /** Label of the dropdown group button */ name?: Exclude; /** Content to show in the dropdown popup */ children?: React.ReactNode; /** Font Awesome icon reference (or string if using library) */ icon?: React.ComponentProps["icon"]; }; declare const DropdownGroup: { ({ icon, children, name }: DropdownGroupProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default DropdownGroup;