import { type WithElementRef } from "../../../utils.js"; import type { HTMLButtonAttributes } from "svelte/elements"; type Props = WithElementRef & { checked?: boolean; disabled?: boolean; onCheckedChange?: (checked: boolean) => void; }; declare const Switch: import("svelte").Component; type Switch = ReturnType; export default Switch;