import React from 'react'; export type BackgroundCellsProps = { size?: number; lineWidth?: number; colorMinor?: string; baseColor?: string; dprSnap?: boolean | number; style?: React.CSSProperties; }; /** * Viewport-filling background of cells (grid) locked to WORLD coordinates. * Uses the same world-locked smooth tiling as BackgroundDots. */ export declare function BackgroundCells({ size, lineWidth, colorMinor, baseColor, dprSnap, style, }: BackgroundCellsProps): import("react/jsx-runtime").JSX.Element;