import BigNumber from 'bignumber.js'; export declare enum BurstValueFormat { PLANCK = 0, BURST = 1 } export declare class BurstValue { private _planck; private constructor(); static Zero(): BurstValue; static fromPlanck(planck: number | string): BurstValue; static fromBurst(burst: number | string): BurstValue; getRaw(): BigNumber; getPlanck(): string; setPlanck(p: string): void; getBurst(): string; setBurst(b: string): void; equals(burstValue: BurstValue): boolean; lessOrEqual(burstValue: BurstValue): boolean; less(burstValue: BurstValue): boolean; greaterOrEqual(burstValue: BurstValue): boolean; greater(burstValue: BurstValue): boolean; add(burstValue: BurstValue): BurstValue; subtract(burstValue: BurstValue): BurstValue; multiply(value: number): BurstValue; divide(value: number): BurstValue; toString(format?: BurstValueFormat): string; clone(): BurstValue; }