import { IgPoint } from "igniteui-react-core";
import { IgrFinancialOverlay, IIgrFinancialOverlayProps } from "./igr-financial-overlay";
import { PriceChannelOverlay } from "./PriceChannelOverlay";
/**
* Represents a IgxDataChartComponent Financial Price Channel Overlay series.
* Default required members: High, Low
*
* You can use the `PriceChannelOverlay` to display price volatility.
*
* ```ts
*
*
*
*
*
*
* ```
*
* ```ts
* let series = new IgrPriceChannelOverlay({name:"series1"});
* series.xAxisName = this.xAxis;
* series.yAxisName = this.yAxis;
* series.xAxis = this.categoryXAxis;
* series.yAxis = this.numericYAxis;
* series.openMemberPath = "open";
* series.highMemberPath = "high";
* series.lowMemberPath = "low";
* series.closeMemberPath = "close";
* ```
*/
export declare class IgrPriceChannelOverlay extends IgrFinancialOverlay {
protected createImplementation(): PriceChannelOverlay;
/**
* @hidden
*/
get i(): PriceChannelOverlay;
constructor(props: IIgrPriceChannelOverlayProps);
/**
* Gets or sets the moving average period for the current PriceChannelOverlay object.
* The typical, and initial, value for Bollinger band periods is 14.
*
* You can use the `Period` to set the moving average.
*
* ```ts
* this.series.period = 14;
* ```
*
* ```ts
*
*
*
*
*
*
* ```
*/
get period(): number;
set period(v: number);
getSeriesValue(world: IgPoint, useInterpolation: boolean, skipUnknowns: boolean): number;
getNextOrExactIndex(world: IgPoint, skipUnknowns: boolean): number;
getPreviousOrExactIndex(world: IgPoint, skipUnknowns: boolean): number;
}
export interface IIgrPriceChannelOverlayProps extends IIgrFinancialOverlayProps {
/**
* Gets or sets the moving average period for the current PriceChannelOverlay object.
* The typical, and initial, value for Bollinger band periods is 14.
*
* You can use the `Period` to set the moving average.
*
* ```ts
* this.series.period = 14;
* ```
*
* ```ts
*
*
*
*
*
*
* ```
*/
period?: number | string;
}