/**
 * Type describing price increment info
 */
export interface PriceIncrement {
    lowEdge: number;
    increment: number;
}
