export type SelectionBoxSize = 'sm' | 'md' | 'lg'; export type SelectionBoxTone = 'brand' | 'primary' | 'success' | 'neutral'; export type SelectionBoxRadius = 'sm' | 'md' | 'none'; interface SelectionBoxProps { checked?: boolean; indeterminate?: boolean; disabled?: boolean; size?: SelectionBoxSize; tone?: SelectionBoxTone; radius?: SelectionBoxRadius; /** Accessible name; also rendered when showLabel is true */ label?: string; showLabel?: boolean; id?: string; name?: string; value?: string; class?: string; onchange?: (checked: boolean) => void; } declare const SelectionBox: import("svelte").Component; type SelectionBox = ReturnType; export default SelectionBox;