import * as React from "react"; import type { PerseusImageBackground } from "@khanacademy/perseus-core"; interface Props { box: [number, number]; backgroundImage?: PerseusImageBackground; } /** * If a graphie URL is provided in `backgroundImage`, will return the rendered graphie background. * Otherwise, returns `null`. */ export declare const LegacyGrid: ({ box, backgroundImage }: Props) => React.JSX.Element | null; export {};