/** * Copyright (c) ACT, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { BoxProps, TableContainerProps } from '@mui/material'; import React from 'react'; import { ScatterPlotData } from "../../../types"; export interface RankSummaryProps { boxContainerProps?: BoxProps; data: Array; idSubstring?: string; selectedPoint?: ScatterPlotData; setSelectedPoint?: (data: ScatterPlotData | undefined) => void; setShowSummary?: (value: boolean) => void; showSummary?: boolean; tableContainerProps?: TableContainerProps; } export declare const RankSummary: React.FC; export default RankSummary; //# sourceMappingURL=index.d.ts.map