import { Domains } from '../interfaces/Domains'; export declare const pubertyThresholds: { male: { x: number; label: string; }[]; female: { x: number; label: string; }[]; }; export declare function makePubertyThresholds(domains: Domains | null, sex: 'male' | 'female'): any[]; export declare const delayedPubertyThreshold: (sex: "male" | "female") => any[]; export declare const lowerPubertyBorder: (d: any, sex: "male" | "female") => any;