import type { HTMLAttributes } from "svelte/elements";
interface Props extends HTMLAttributes {
color?: "neutral" | "primary" | "secondary" | "danger" | "success" | "warning" | "info";
shape?: "square" | "rounded" | "theme";
size?: "sm" | "md" | "lg";
checked?: boolean;
disabled?: boolean;
elevated?: boolean;
onChange?: () => void;
}
declare const Switch: import("svelte").Component;
type Switch = ReturnType;
export default Switch;