export interface IBisection {
    seekValue: number;
    lowStartVolatility: number;
    highStartVolatility: number;
    tolerance: number;
    iterations: number;
    fn(volatility: number): number;
}
export declare const bisection: (params: IBisection) => number;
//# sourceMappingURL=bisection.d.ts.map