/// <reference types="react" />
import { AdminClient } from '../types';
declare type Props = {
    medusaClient: AdminClient;
    organisation: string;
    project: string;
    location: Location;
    onRowClick: (row: any) => string;
};
declare const SentryTransactions: (props: Props) => JSX.Element;
export default SentryTransactions;
