import { LogarithmicScaler } from "./LogarithmicScaler";
import { ScalerParams } from "./ScalerParams";
import { Type } from "igniteui-react-core";
/**
 * @hidden
 */
export declare class VerticalLogarithmicScaler extends LogarithmicScaler {
    static $t: Type;
    q(a: number, b: ScalerParams): number;
    p(a: number, b: ScalerParams): number;
    private af;
    private ag;
}
