/// <reference types="bn.js" />
import { BN } from '../isomorphic/anchor';
export declare class StrictOraclePrice {
    current: BN;
    twap?: BN;
    constructor(current: BN, twap?: BN);
    max(): BN;
    min(): BN;
}
