import type { DarkmodeProps } from ".."; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [DarkmodeProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L540) * ## Props * @prop class: className * @prop lightIcon * @prop darkIcon * @prop size = "md" * @prop ariaLabel = "Dark mode" * @prop ...restProps */ declare const DarkMode: import("svelte").Component; type DarkMode = ReturnType; export default DarkMode;