import { Dispatch, SetStateAction } from 'react';
import { Connection } from '../types/Connection';
import { ConnectionViewType } from '../types/ConnectionViewType';
interface Props {
    connection: Connection;
    setCurrentView?: Dispatch<SetStateAction<ConnectionViewType | null | undefined>>;
}
declare const ConsentHistory: ({ connection, setCurrentView }: Props) => JSX.Element;
export default ConsentHistory;
