import { type SvEditorProps } from './editor-contract'; type Props = SvEditorProps & { checked?: boolean; onChange?: (checked: boolean) => void; /** Optional labels rendered inside the track. */ onLabel?: string; offLabel?: string; }; declare const SvSwitchButton: import("svelte").Component; type SvSwitchButton = ReturnType; export default SvSwitchButton;