/** * Copyright IBM Corp. 2026 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ import React from 'react'; import PropTypes from 'prop-types'; /** * ---------------- * PageHeaderContentPageActions * ---------------- */ export interface PageHeaderContentPageActionsProps { /** * Provide child elements to be rendered inside PageHeaderContentPageActions. */ children?: React.ReactNode; /** * Specify an optional className to be added to your PageHeaderContentPageActions */ className?: string; /** * The PageHeaderContent's page actions collapsible Menu button label */ menuButtonLabel?: string; /** * The PageHeaderContent's page actions */ actions?: React.ReactNode; } export declare const PageHeaderContentPageActions: { ({ className, children, menuButtonLabel, actions, ...other }: PageHeaderContentPageActionsProps): React.JSX.Element; displayName: string; propTypes: { /** * The PageHeaderContent's page actions */ actions: PropTypes.Requireable>; /** * Provide child elements to be rendered inside PageHeaderContentPageActions. */ children: PropTypes.Requireable; /** * Specify an optional className to be added to your PageHeaderContentPageActions */ className: PropTypes.Requireable; /** * The PageHeaderContent's collapsible Menu button label */ menuButtonLabel: PropTypes.Requireable; }; }; //# sourceMappingURL=PageHeaderContentPageActions.d.ts.map