import type { FunctionComponent } from 'react'; import { OverflowMenuProps } from '@patternfly/react-core'; /** extends OverflowMenuProps */ export interface ResponsiveActionsProps extends Omit { /** Indicates breakpoint at which to switch between horizontal menu and vertical dropdown */ breakpoint?: OverflowMenuProps['breakpoint']; /** Custom OUIA ID */ ouiaId?: string; /** Child actions to be displayed */ children: React.ReactNode; } export declare const ResponsiveActions: FunctionComponent; export default ResponsiveActions;