import type { SelectionBoxRadius, SelectionBoxSize, SelectionBoxTone } from './SelectionBox.svelte'; type $$ComponentProps = { checked?: boolean; indeterminate?: boolean; disabled?: boolean; size?: SelectionBoxSize; tone?: SelectionBoxTone; radius?: SelectionBoxRadius; label?: string; showLabel?: boolean; demo?: 'playground' | 'states' | 'sizes' | 'table'; }; declare const SelectionBoxStory: import("svelte").Component<$$ComponentProps, {}, "">; type SelectionBoxStory = ReturnType; export default SelectionBoxStory;