import * as React from "react"; import { DropdownMenuItemProps } from "./DropdownMenuItem"; export interface DropdownSectionProps { children: React.ReactElement | Array>; /** * Allows one section to be a sticky footer within the dropdown */ footer?: boolean; } declare const DropdownSection: ({ children }: DropdownSectionProps) => React.JSX.Element; export default DropdownSection;