import { Color } from '@ngageoint/color-js'; /** * Grid Line Style */ export declare class GridStyle { /** * Grid line color */ private color?; /** * Grid line width */ private width; /** * Create a new style * * @param color * color * @param width * width * @return style */ static style(color: Color | undefined, width: number): GridStyle; /** * Constructor * * @param color * color * @param width * width */ constructor(color: Color | undefined, width: number); /** * Get the grid line color * * @return grid line color */ getColor(): Color | undefined; /** * Set the grid line color * * @param color * grid line color */ setColor(color?: Color): void; /** * Get the grid line width * * @return grid line width */ getWidth(): number; /** * Set the grid line width * * @param width * grid line width */ setWidth(width: number): void; } //# sourceMappingURL=GridStyle.d.ts.map