import React from 'react'; import { ModalProps as MagmaModalProps } from 'react-magma-dom'; export interface ModalProps extends MagmaModalProps { fields: any; showError?: boolean; } export declare const Modal: React.MemoExoticComponent<(props: ModalProps) => React.JSX.Element>;