import { DropdownMenuProps } from './DropdownMenu';
import { IconSvgButtonProps } from '../IconSvgButton';
export type ComplexMenuProps = {
    iconButtons?: IconSvgButtonProps[];
    dropdownMenus?: DropdownMenuProps[];
};
/**
 * The ComplexMenu component allows you to create a generic menu with
 * icon buttons and multiple dropdown menus that contain groups of items.
 */
export declare function ComplexMenu(props: ComplexMenuProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=ComplexMenu.d.ts.map