import { SvelteComponentTyped } from "svelte"; import type { CSSColorString } from '../../types'; declare const __propDef: { props: { main?: string; alt?: string; /** * @deprecated * @default 'light_mode' * @description (Do not use. Will be deprecated in the next major release.) This prop accepts a string that corresponds to the the name of an icon from the Material Icons library. * @link https://fonts.google.com/icons */ mainIcon?: string; /** * @deprecated * @default 'dark_mode' * @description (Do not use. Will be deprecated in the next major release.) This prop accepts a string that corresponds to the the name of an icon from the Material Icons library. * @link https://fonts.google.com/icons */ altIcon?: string; corner?: string; bgColor?: CSSColorString | null; iconColor?: CSSColorString | null; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type ThemeToggleProps = typeof __propDef.props; export type ThemeToggleEvents = typeof __propDef.events; export type ThemeToggleSlots = typeof __propDef.slots; export default class ThemeToggle extends SvelteComponentTyped { } export {};