import React from "react"; import type { FrameProps } from "../../types"; export declare const Frame: ({ xScale, yScale, lineColor, lineWidth, linePathEffect, }: FrameProps) => React.JSX.Element | null; export declare const FrameDefaults: { lineColor: string; lineWidth: number; };