import React from 'react'; import { Trace } from './TraceLine'; type Props = { trace1: Trace; trace2?: Trace; }; export declare const AxisArrows: ({ trace1, trace2 }: Props) => React.JSX.Element; export {};