import { ChartRenderFunction } from '../types';
interface Point {
    x: number;
    y: number;
}
export interface AssociationChartConfig {
    data: Point[];
}
export declare const renderAssociationChart: ChartRenderFunction<AssociationChartConfig>;
export {};
//# sourceMappingURL=index.d.ts.map