/// import type { PDSTextType } from '../../../common'; type MobileAlertDialogProps = { iconMode?: 'none' | 'success' | 'error' | 'warning' | 'information'; titleText?: PDSTextType; contentText: PDSTextType; btnMode?: 'tbtn_amount1' | 'tbtn_amount2' | 'tbtn_amount3'; btnStack?: 'side' | 'stack'; tBtn1Text?: PDSTextType; tBtn2Text?: PDSTextType; tBtn3Text?: PDSTextType; tBtn1State?: 'normal' | 'disabled'; tBtn2State?: 'normal' | 'disabled'; tBtn3State?: 'normal' | 'disabled'; tBtn1Type?: 'button' | 'submit'; tBtn2Type?: 'button' | 'submit'; tBtn3Type?: 'button' | 'submit'; onClickTBtn1?: () => void; onClickTBtn2?: () => void; onClickTBtn3?: () => void; }; declare function MobileAlertDialog({ iconMode, titleText, contentText, btnStack, btnMode, tBtn1Text, tBtn2Text, tBtn3Text, tBtn1State, tBtn2State, tBtn3State, tBtn1Type, tBtn2Type, tBtn3Type, onClickTBtn1, onClickTBtn2, onClickTBtn3 }: MobileAlertDialogProps): import("react").ReactPortal; export default MobileAlertDialog;