export interface LineComponentProps {
    componentName: string;
    title?: string;
    titleFontColor?: string;
    titleFontSize?: string;
    titleFontWeight?: string;
    table_name: string;
    data_columns: string[];
    showLegend?: boolean;
    width: number;
    height: number;
    lineColor: string;
    strokeWidth?: number;
}
declare function LineChartComponent(props: LineComponentProps): JSX.Element;
export default LineChartComponent;
