/** * The Geometric distribution is the probability distribution of the number X of * Bernoulli trials needed to get one success * @param p */ export declare const geometric: (p: number) => number;