import type { HTMLInputAttributes } from "svelte/elements"; type ToggleProps = Omit & { label: string; labelOn?: string; labelOff?: string; helperText?: string; size?: "sm" | "md"; checked?: boolean; class?: string; }; declare const Toggle: import("svelte").Component; type Toggle = ReturnType; export default Toggle; //# sourceMappingURL=Toggle.svelte.d.ts.map