/// import type { PDSTextType } from '../../../common'; type MobileBasicModalProps = { titleText: PDSTextType; bodySpacingMode?: 'none' | 'use'; bodyOverflowType?: 'auto' | 'visible'; contentText?: PDSTextType; mBtnText: PDSTextType; mBtnState?: 'normal' | 'disabled'; mBtnType?: 'button' | 'submit'; tBtnText?: PDSTextType; tBtnState?: 'normal' | 'disabled'; tBtnType?: 'button' | 'submit'; onClickMBtn?: () => void; onClickTBtn?: () => void; onClickXMarkIcon?: () => void; children?: React.ReactNode; }; declare function MobileBasicModal({ titleText, bodySpacingMode, bodyOverflowType, contentText, mBtnText, mBtnState, mBtnType, tBtnText, tBtnState, tBtnType, onClickMBtn, onClickTBtn, onClickXMarkIcon, children }: MobileBasicModalProps): import("react").ReactPortal; export default MobileBasicModal;