/**
 * Calculates the historic volatility (std dev of returns) based
 * on price history.
 */
export declare function calcHistVolatility(prices: number[]): number;
