import BN from "bn.js"; import * as types from "../types"; export interface PriceHeuristicFields { lower: BN; upper: BN; exp: BN; } export interface PriceHeuristicJSON { lower: string; upper: string; exp: string; } export declare class PriceHeuristic { readonly lower: BN; readonly upper: BN; readonly exp: BN; constructor(fields: PriceHeuristicFields); static layout(property?: string): import("buffer-layout").Layout; static fromDecoded(obj: any): types.PriceHeuristic; static toEncodable(fields: PriceHeuristicFields): { lower: BN; upper: BN; exp: BN; }; toJSON(): PriceHeuristicJSON; static fromJSON(obj: PriceHeuristicJSON): PriceHeuristic; toEncodable(): { lower: BN; upper: BN; exp: BN; }; } //# sourceMappingURL=PriceHeuristic.d.ts.map