import React, { ReactElement } from 'react'; import { OnAction } from '@/types'; interface ModalStatusProps { title: string; text: string | ReactElement; type: 'success' | 'info' | 'warning'; actions: OnAction[]; w?: string; } export declare const ModalStatus: (props: ModalStatusProps) => React.JSX.Element; export {};