export namespace propTypes { export const values: PropTypes.Validator; export const width: PropTypes.Validator; export const height: PropTypes.Requireable; export const heightRatio: PropTypes.Requireable; export const x: PropTypes.Validator; export const xUnit: PropTypes.Requireable; export const xNice: PropTypes.Requireable; export const xTicks: PropTypes.Requireable; export const xLines: PropTypes.Requireable; tick: PropTypes.Validator; label: PropTypes.Requireable; base: PropTypes.Requireable; textAnchor: PropTypes.Requireable; }>[]>; export const xScale: PropTypes.Requireable; export const xNumberFormat: PropTypes.Requireable; export const xShowValue: PropTypes.Validator; export const y: PropTypes.Validator; export const yUnit: PropTypes.Requireable; export const yNice: PropTypes.Requireable; export const yTicks: PropTypes.Requireable; export const yLines: PropTypes.Requireable; tick: PropTypes.Validator; label: PropTypes.Requireable; base: PropTypes.Requireable; }>[]>; export const yScale: PropTypes.Requireable; export const yNumberFormat: PropTypes.Requireable; export const yShowValue: PropTypes.Validator; export const numberFormat: PropTypes.Validator; export const opacity: PropTypes.Validator; export const color: PropTypes.Requireable; export const colorLegend: PropTypes.Requireable; export const colorLegendValues: PropTypes.Requireable; export const colorRange: PropTypes.Requireable; export const colorRanges: PropTypes.Validator; discrete: PropTypes.Validator; }>>; export const colorMap: PropTypes.Requireable; export { sortPropType as colorSort }; export const size: PropTypes.Validator; export const sizeRangeMax: PropTypes.Validator; export const sizeUnit: PropTypes.Requireable; export const sizeNumberFormat: PropTypes.Requireable; export const sizeShowValue: PropTypes.Validator; export const label: PropTypes.Validator; export const inlineLabel: PropTypes.Requireable; export const inlineLabelPosition: PropTypes.Requireable; export const inlineSecondaryLabel: PropTypes.Requireable; export const detail: PropTypes.Requireable; export const tLabel: PropTypes.Validator<(...args: any[]) => any>; export const description: PropTypes.Requireable; export const paddingTop: PropTypes.Validator; export const paddingRight: PropTypes.Validator; export const paddingBottom: PropTypes.Validator; export const paddingLeft: PropTypes.Validator; export const tooltipLabel: PropTypes.Requireable; export const tooltipBody: PropTypes.Requireable; export const column: PropTypes.Requireable; export { sortPropType as columnSort }; export const columnFilter: PropTypes.Requireable; test: PropTypes.Validator; }>[]>; export const columns: PropTypes.Validator; export const minInnerWidth: PropTypes.Validator; export const annotations: PropTypes.Validator; x1: PropTypes.Validator; x2: PropTypes.Validator; y1: PropTypes.Validator; y2: PropTypes.Validator; label: PropTypes.Requireable; }>[]>; } export default ScatterPlot; import PropTypes from "prop-types"; import { sortPropType } from "./utils"; declare function ScatterPlot({ values, width, height: userHeight, heightRatio, x, xUnit, xNice, xTicks, xLines, xScale, xNumberFormat, xShowValue, y, yUnit, yNice, yTicks, yLines, yScale, yNumberFormat, yShowValue, numberFormat, opacity, color, colorLegend, colorLegendValues, colorRange, colorRanges, colorMap, colorSort, colorDarkMapping, size, sizeRange, sizeRangeMax, sizeUnit, sizeNumberFormat, sizeShowValue, label, inlineLabel, inlineLabelPosition, inlineSecondaryLabel, detail, tLabel, description, paddingTop, paddingRight, paddingBottom, paddingLeft, tooltipLabel, tooltipBody, column, columnSort, columnFilter, columns, minInnerWidth, annotations, allowCanvasRendering }: { values: any; width: any; height: any; heightRatio: any; x: any; xUnit: any; xNice: any; xTicks: any; xLines: any; xScale: any; xNumberFormat: any; xShowValue: any; y: any; yUnit: any; yNice: any; yTicks: any; yLines: any; yScale: any; yNumberFormat: any; yShowValue: any; numberFormat: any; opacity: any; color: any; colorLegend: any; colorLegendValues: any; colorRange: any; colorRanges: any; colorMap: any; colorSort: any; colorDarkMapping: any; size: any; sizeRange: any; sizeRangeMax: any; sizeUnit: any; sizeNumberFormat: any; sizeShowValue: any; label: any; inlineLabel: any; inlineLabelPosition: any; inlineSecondaryLabel: any; detail: any; tLabel: any; description: any; paddingTop: any; paddingRight: any; paddingBottom: any; paddingLeft: any; tooltipLabel: any; tooltipBody: any; column: any; columnSort: any; columnFilter: any; columns: any; minInnerWidth: any; annotations: any; allowCanvasRendering: any; }): JSX.Element; declare namespace ScatterPlot { export const defaultProps: { x: string; y: string; xScale: string; xShowValue: boolean; yScale: string; yShowValue: boolean; opacity: number; numberFormat: string; colorLegend: boolean; paddingTop: number; paddingRight: number; paddingBottom: number; paddingLeft: number; size: string; sizeRangeMax: number; label: string; heightRatio: number; sizeShowValue: boolean; columns: number; minInnerWidth: number; annotations: any[]; }; export { propTypes }; }