import { IAllAround, IAxisConfig, IXYGridConfig } from "../types";
import { GridConfig } from "./grid-config";
export declare class XYGridConfig extends GridConfig implements IXYGridConfig {
    /** The default margin */
    static readonly DEFAULT_MARGIN: IAllAround<number>;
    static readonly DEFAULT_PADDING: IAllAround<number>;
    axis: IAllAround<IAxisConfig>;
    interactionPlugins: boolean;
    constructor();
}
