/** * 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'; /** * ---------------- * PageHeaderContentText * ---------------- */ export interface PageHeaderContentTextProps { /** * Provide child elements to be rendered inside PageHeaderContentText. */ children?: React.ReactNode; /** * Specify an optional className to be added to your PageHeaderContentText */ className?: string; /** * The PageHeaderContent's subtitle */ subtitle?: string; } export declare const PageHeaderContentText: { ({ className, children, subtitle, ...other }: PageHeaderContentTextProps): React.JSX.Element; displayName: string; propTypes: { /** * Provide child elements to be rendered inside PageHeaderContentText. */ children: PropTypes.Requireable; /** * Specify an optional className to be added to your PageHeaderContentText */ className: PropTypes.Requireable; /** * The PageHeaderContent's subtitle */ subtitle: PropTypes.Requireable; }; }; //# sourceMappingURL=PageHeaderContentText.d.ts.map