/// import { SvelteComponentTyped } from "svelte"; export interface ContentSwitcherProps extends svelte.JSX.HTMLAttributes { /** * Set the selected index of the switch item * @default 0 */ selectedIndex?: number; /** * Set to `true` to enable the light variant * @default false */ light?: boolean; /** * Specify the size of the content switcher * @default undefined */ size?: "sm" | "xl"; } export default class ContentSwitcher extends SvelteComponentTyped< ContentSwitcherProps, { change: CustomEvent; click: WindowEventMap["click"]; mouseover: WindowEventMap["mouseover"]; mouseenter: WindowEventMap["mouseenter"]; mouseleave: WindowEventMap["mouseleave"]; }, { default: {} } > {}