import type { HTMLInputAttributes } from 'svelte/elements'; export interface SwitchProps extends Omit { selected?: boolean; disabled?: boolean; icons?: 'selected' | 'both'; inputElement?: HTMLInputElement; element?: HTMLDivElement; }