interface PieComponentProps {
    componentName?: string;
    title?: string;
    titleFontColor?: string;
    titleFontSize?: string;
    titleFontWeight?: string;
    radius?: number;
    table_name: string;
    data_columns: string[];
}
declare function PieChartComponent(props: PieComponentProps): JSX.Element;
export default PieChartComponent;
