import { D3Scale, Orientation } from "../types"; export interface WithGridLines { (...args: any[]): any; orient(): Orientation; orient(nextOrient: Orientation): WithGridLines; canvas(): boolean; canvas(nextCanvas: boolean): WithGridLines; xScale(): D3Scale; xScale(xScale: D3Scale): WithGridLines; yScale(): D3Scale; yScale(yScale: D3Scale): WithGridLines; context(): any; context(context: any): WithGridLines; } declare const _default: (series: any, settings: any) => WithGridLines; export default _default;