import { IgrNumericYAxis, IIgrNumericYAxisProps } from "./igr-numeric-y-axis"; import { PercentChangeYAxis } from "./PercentChangeYAxis"; /** * A horizontal axis that uses a DateTime scale. * * You can use the `PercentChangeYAxis` show percentage values. * * ```ts * * * * * ``` */ export declare class IgrPercentChangeYAxis

extends IgrNumericYAxis

{ protected createImplementation(): PercentChangeYAxis; /** * @hidden */ get i(): PercentChangeYAxis; constructor(props: P); } export interface IIgrPercentChangeYAxisProps extends IIgrNumericYAxisProps { }