import React from "react"; interface Props extends Omit, "className"> { trendline?: boolean; border?: boolean; horizontal?: boolean; vertical?: boolean; className?: string | { root?: string; vertical?: string; horizontal?: string; border?: string | { top?: string; left?: string; right?: string; bottom?: string; }; }; } export declare const GridLines: ({ border, horizontal, vertical, className }: Props) => React.JSX.Element; export {};