import { DependencyList } from 'react';
/**
 * This hook renders D3.js charts into react with
 * the provided function. Returns a ref which must be put
 * into the svg we want to render our chart in.
 *
 * @author Juhana Kuparinen <juhana.kuparinen@kvanttori.fi>
 */
export declare const useD3: (renderChartFn: (svg: any) => void, dependencies: DependencyList | undefined) => import("react").RefObject<SVGSVGElement>;
