/// import type { PDSIconType, PDSTextType } from '../../../common'; type Props = { iconName?: PDSIconType; iconFillType?: 'fill' | 'line'; titleText: PDSTextType; contentText: PDSTextType; onClick?: (e: React.MouseEvent) => void; onMouseDown?: (e: React.MouseEvent) => void; }; declare function CompoundButton({ iconName, iconFillType, titleText, contentText, onClick, onMouseDown }: Props): JSX.Element; export default CompoundButton;