import React from 'react'; export type BackgroundDotsProps = { size?: number; dotRadius?: number; colorMinor?: string; colorMajor?: string; baseColor?: string; dprSnap?: boolean | number; majorEvery?: number; style?: React.CSSProperties; }; /** * Viewport-filling dotted background locked to WORLD coordinates. * - Moves with pan (phase depends on camera offsets). * - Respects zoom by changing backgroundSize smoothly (no integer rounding). * - Avoids jitter during zoom by computing phase from continuous values. * Place as a direct child of the canvas container (not inside the transformed world). */ export declare function BackgroundDots({ size, dotRadius, colorMinor, baseColor, dprSnap, style, }: BackgroundDotsProps): import("react/jsx-runtime").JSX.Element;