import type { HTMLInputAttributes } from "svelte/elements";
type $$ComponentProps = {
    checked?: boolean;
    disabled?: boolean;
} & HTMLInputAttributes;
declare const Switch: import("svelte").Component<$$ComponentProps, {}, "checked">;
type Switch = ReturnType<typeof Switch>;
export default Switch;
