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#L536)
 * ## Props
 * @prop class: className
 * @prop lightIcon
 * @prop darkIcon
 * @prop size = "md"
 * @prop ariaLabel = "Dark mode"
 * @prop ...restProps
 */
declare const DarkMode: import("svelte").Component<DarkmodeProps, {}, "">;
type DarkMode = ReturnType<typeof DarkMode>;
export default DarkMode;
