import * as React from 'react'; import type { ScatterProps } from "../Scatter.mjs"; /** * Interacting sample stride. Multiple of `nBatches` (batch 0's stride) so the * sample is a subset of batch 0 — settling only adds points, no jump. Coarsened * to stay within `budget`. */ export declare function getInteractionStep(count: number, nBatches: number, budget: number): number; /** * @ignore - internal component. */ declare function ScatterAsync(props: ScatterProps): React.JSX.Element; declare namespace ScatterAsync { var propTypes: any; } export { ScatterAsync };