interface Props { label?: string; checked?: boolean; onChange?: (checked: boolean) => void; } declare const SCheckBox: import("svelte").Component; type SCheckBox = ReturnType; export default SCheckBox;