export interface ChartDotGLProps {
    dataKey: string;
    color: string;
    size?: number;
    opacity?: number;
}
/**
 * WebGL scatter plot. Canvas mounted outside SVG for sharp Retina rendering.
 *
 * @example
 * ```
 * <ChartDotGL dataKey="value" color={colors.categorical(1)[0]} />
 * ```
 */
export declare function ChartDotGL({ dataKey, color, size, opacity, }: ChartDotGLProps): import("react").JSX.Element | null;
//# sourceMappingURL=ChartDotGL.d.ts.map