/// import type { PDSIconType, PDSTextType } from '../../../common'; type PageTitleTextGroupProps = { titleText: PDSTextType; tooltipText?: PDSTextType; compoundBtnIconName?: PDSIconType; compoundBtnIconFillType?: 'fill' | 'line'; compoundBtnTitleText?: PDSTextType; compoundBtnContentText?: PDSTextType; displayType?: 'normal' | 'edit_btn' | 'compound_btn'; btn1State?: 'normal' | 'disabled'; onClickBtn1?: () => void; onClickCompoundBtn?: () => void; }; declare function PageTitleTextGroup({ titleText, tooltipText, compoundBtnIconName, compoundBtnIconFillType, compoundBtnTitleText, compoundBtnContentText, displayType, btn1State, onClickBtn1, onClickCompoundBtn }: PageTitleTextGroupProps): JSX.Element; export default PageTitleTextGroup;