import * as React from "react"; import type { SizeClass } from "../../../util/sizing-utils"; import type { GraphRange, MarkingsType } from "@khanacademy/perseus-core"; import type { vec } from "mafs"; interface GridProps { gridStep: vec.Vector2; range: GraphRange; containerSizeClass: SizeClass; markings: MarkingsType; width: number; height: number; } export declare const Grid: (props: GridProps) => React.JSX.Element | null; export {};