import React from 'react';
import { Connection } from '../types/Connection';
interface Props {
connection: Connection;
onClose: () => void;
onDeny: (filteredResources: any) => void;
}
declare const ConsentScreen: React.FC<Props>;
export default ConsentScreen;