import React from 'react'; import { DropdownProps } from '@patternfly/react-core'; declare type Props = Omit; export declare type AcmDropdownProps = Props & { dropdownItems: AcmDropdownItems[]; text: string; isDisabled?: boolean; onSelect: (id: string) => void; id: string; toggle?: React.ReactNode; tooltip?: string | React.ReactNode; isKebab?: boolean; onHover?: () => void; isPlain?: boolean; isPrimary?: boolean; onToggle?: (isOpen?: boolean) => void; }; export declare type AcmDropdownItems = { id: string; component?: string | React.ReactNode; isDisabled?: boolean; tooltip?: string | React.ReactNode; text: string | React.ReactNode; href?: string; icon?: React.ReactNode; }; export declare function AcmDropdown(props: AcmDropdownProps): JSX.Element; export {};