declare type OptionPriceReturnType = number;
export interface IOptionPrice {
    S: number;
    K: number;
    t: number;
    rf: number;
    sigma: number;
    type: 'call' | 'put';
}
export declare const optionPrice: (params: IOptionPrice) => OptionPriceReturnType;
export {};
//# sourceMappingURL=optionPrice.d.ts.map