/// import { Action } from '../common/ModalComponent'; interface IDVerificationProps { message?: string | null; displayModal?: boolean; actions?: Action[]; onClose?: () => void; } export declare const VerificationPendingModal: (props: IDVerificationProps) => JSX.Element | null; export {};