import React from 'react'; interface IMyDialogProperties { children: React.ReactNode; title?: string; message?: string; onBackDrop: (event: React.SyntheticEvent) => void; onConfirm?: (event: React.SyntheticEvent) => void; } declare const AlgorandModal: React.FC; export default AlgorandModal; //# sourceMappingURL=index.d.ts.map