import { ButtonVariant, DropdownPopperProps } from '@patternfly/react-core'; import { ComponentClass, FunctionComponent } from 'react'; import { IPageAction } from './PageAction'; interface PageActionDropdownProps { actions: IPageAction[]; icon?: ComponentClass | FunctionComponent; iconOnly?: boolean; isDisabled?: string | undefined; label?: string; onOpen?: (label: string, open: boolean) => void; position?: DropdownPopperProps['position']; selectedItem?: T; selectedItems?: T[]; tooltip?: string; variant?: ButtonVariant; ariaLabel?: string; } export declare function PageActionDropdown(props: PageActionDropdownProps): import("react/jsx-runtime").JSX.Element; export declare function filterActionSeperators(actions: IPageAction[]): IPageAction[]; export {};