import type { HTMLInputAttributes } from "svelte/elements"; type SwitchProps = Omit & { label: string; helperText?: string; class?: string; }; declare const Switch: import("svelte").Component; type Switch = ReturnType; export default Switch; //# sourceMappingURL=Switch.svelte.d.ts.map