import './style.scss'; import type { IARCProps } from '@adam-sv/arc'; export interface IGridProps extends IARCProps { xTicks: number[]; yTicks: number[]; xDashed?: number | string; yDashed?: number | string; } export declare function Grid({ className, xTicks, yTicks, yDashed, xDashed, }: IGridProps): import("react/jsx-runtime").JSX.Element | null;