interface Props { name?: string; checkedClass?: string; disabledClass?: string; indicatorClass?: string; labelClass?: string; label?: string | undefined | null; checked?: boolean; size?: 'sm' | 'md'; disabled?: boolean; onChange?: (value: boolean) => void; validate?: (() => Promise) | undefined; } declare const SSwitch: import("svelte").Component; type SSwitch = ReturnType; export default SSwitch;