import { CSSProperties } from 'react'; import { MosaicPlotData } from '../types/plots/mosaicPlot'; import { FacetedData } from '../types/plots'; interface ContingencyTableProps { data?: MosaicPlotData | FacetedData; independentVariable: string; dependentVariable: string; facetVariable?: string; /** * Styling for the component's data table(s). * Also doubles as the container styling when * the component is rendering unfaceted data. */ tableContainerStyles?: CSSProperties; /** Styling for a single facet (title + data table) */ singleFacetContainerStyles?: CSSProperties; /** Styling for the container of all facets */ facetedContainerStyles?: CSSProperties; enableSpinner?: boolean; /** * Reference values are read as [xAxisReferenceValue, yAxisReferenceValue] * The reference values are used to re-order the 2x2 table quadrants, as needed */ selectedReferenceValues?: Array; } export declare function ContingencyTable(props: ContingencyTableProps): JSX.Element | null; export {}; //# sourceMappingURL=ContingencyTable.d.ts.map