UNPKG

@afzalimdad9/react-alert-template-mui

Version:
16 lines 430 B
import React from "react"; interface IProps { message: string | React.ReactNode; options: { title?: string | React.ReactNode; actions?: { copy: string; onClick: any; }[]; closeCopy?: string; }; close: any; } declare const AlertDialog: ({ close, message, options }: IProps) => React.JSX.Element; export default AlertDialog; //# sourceMappingURL=index.d.ts.map