import { IChart, ICoord, IFilter, IScale } from 'viser';
interface ISChartProps {
data?: any;
viewId?: string;
coord?: ICoord;
scale?: IScale;
filter?: IFilter;
start?: any;
end?: any;
}
declare type IRChart = IChart & ISChartProps;
export default IRChart;