import { ComponentProps, FC } from 'react'; import { IconButtonProps } from '../IconButton'; export interface DarkThemeToggleProps extends IconButtonProps { iconDark?: FC>; iconLight?: FC>; ref?: React.Ref; hasMotion?: boolean; } /** * @name DarkThemeToggle * @description The DarkThemeToggle component is used to toggle between dark and light mode, you can assign your own icons or use the default ones (sun and moon) * @param {string} props.iconDark - The icon for dark mode * @param {string} props.iconLight - The icon for light mode * @param {DeepPartial} props.theme - The theme of the dark theme toggle * * * @returns React.ReactNode * */ export declare const DarkThemeToggle: FC; //# sourceMappingURL=DarkThemeToggle.d.ts.map