import type { ApexOptions } from 'apexcharts'; type ConfigFunc = (dark: boolean) => ApexOptions; interface Props { configFunc: ConfigFunc; class?: string; } /** * [Go to docs](https://flowbite-svelte-admin-dashboard.vercel.app/) * ## Type * Props * ## Props * @prop configFunc * @prop class: className */ declare const DarkChart: import("svelte").Component; type DarkChart = ReturnType; export default DarkChart;