UNPKG

@actinc/dls

Version:

Design Language System (DLS) for ACT & Encoura front-end projects.

22 lines 807 B
/** * 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<ScatterPlotData>; idSubstring?: string; selectedPoint?: ScatterPlotData; setSelectedPoint?: (data: ScatterPlotData | undefined) => void; setShowSummary?: (value: boolean) => void; showSummary?: boolean; tableContainerProps?: TableContainerProps; } export declare const RankSummary: React.FC<RankSummaryProps>; export default RankSummary; //# sourceMappingURL=index.d.ts.map