import { ExpectedShortfallOptionsValidated } from '../schemas/ExpectedShortfallOptionsSchema'; /** * Calculate Expected Shortfall using historical method * * @param returns Array of historical returns * @param options Calculation options * @returns Expected Shortfall value (negative = potential loss) */ export declare function calculateHistoricalExpectedShortfall(returns: number[], options: ExpectedShortfallOptionsValidated): number;