export const dataPropType: PropTypes.Requireable<(PropTypes.InferProps<{ group: PropTypes.Requireable<(string | null | undefined)[]>; values: PropTypes.Requireable<(PropTypes.InferProps<{ x: PropTypes.Requireable; y: PropTypes.Requireable; }> | null | undefined)[]>; }> | null | undefined)[]>; export default TTestTable; import PropTypes from "prop-types"; declare class TTestTable extends Component { constructor(props: any); state: { control: number; liftValues: never[]; pValues: never[]; }; componentDidMount(): void; getLiftStatus(row: any): "control" | "invalid" | "true" | "false"; getPValueStatus(row: any): "control" | "invalid" | ""; getSignificance(row: any): boolean | "control"; computeLift(values: any, control: any): string; computePValue(values: any, control: any): string | number; computeTTest(control: any): void; render(): import("react").JSX.Element; } declare namespace TTestTable { export { propTypes }; export { defaultProps }; } import { Component } from "react"; declare namespace propTypes { const alpha: PropTypes.Requireable; const data: PropTypes.Validator<(PropTypes.InferProps<{ group: PropTypes.Requireable<(string | null | undefined)[]>; values: PropTypes.Requireable<(PropTypes.InferProps<{ x: PropTypes.Requireable; y: PropTypes.Requireable; }> | null | undefined)[]>; }> | null | undefined)[]>; const groups: PropTypes.Validator<(string | null | undefined)[]>; const liftValPrec: PropTypes.Requireable; const metric: PropTypes.Validator; const pValPrec: PropTypes.Requireable; } declare namespace defaultProps { const alpha_1: number; export { alpha_1 as alpha }; const liftValPrec_1: number; export { liftValPrec_1 as liftValPrec }; const pValPrec_1: number; export { pValPrec_1 as pValPrec }; } //# sourceMappingURL=TTestTable.d.ts.map