import { FC } from "react"; export interface LineBarGraphProps { data: any; entities?: DashboardConfigV2.Entity[]; orientation?: DashboardConfigV2.Detailed["graphOrientation"]; } declare const LineBarGraph: FC; export default LineBarGraph;