import React from 'react';
import { Network } from './types';
interface Props {
    onDismiss?: () => void;
    networks?: Network[];
}
declare const UnsupportedModal: React.FC<Props>;
export default UnsupportedModal;
