import { ArcData, ArcOptions } from './types';
/**
 * Layout for Arc / Chord diagram with d3 style.
 */
export declare function Arc(options?: ArcOptions): (data: ArcData) => {
    nodes: any[];
    edges: any[];
};
