/// <reference types="react" />
import { RouteComponentProps, WindowLocation } from '@reach/router';
declare type Props = {
    baseUrl: string;
    organisation: string;
    project: string;
    location: WindowLocation;
    onTransactionRowClick?: (row: any) => string;
    onTransactionEventRowClick?: (row: any) => string;
};
declare const Sentry: (props: RouteComponentProps & Props) => JSX.Element;
export default Sentry;
