import type { HTMLInputAttributes } from 'svelte/elements'; import type { ControlInteractionOptions } from './control-interaction.js'; export interface Props extends Omit { checked?: boolean; label?: string; labelPosition?: 'left' | 'right'; size?: 'sm' | 'md' | 'lg'; class?: string; interaction?: ControlInteractionOptions | false; } declare const Switch: import("svelte").Component; type Switch = ReturnType; export default Switch; //# sourceMappingURL=Switch.svelte.d.ts.map