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