import { type QwikIntrinsicElements, Signal } from "@builder.io/qwik"; type SwitchCustomProps = { /** * The controlled state of the toggle. */ checked?: Signal; /** * The state of the toggle when initially rendered. Use `defaultPressed` * if you do not need to control the state of the toggle. * @defaultValue false */ defaultChecked?: boolean; required?: boolean; }; export type SwitchProps = SwitchCustomProps & QwikIntrinsicElements["button"]; declare const Switch: import("@builder.io/qwik").Component; declare const SwitchThumb: import("@builder.io/qwik").Component>; export declare function getState(checked: boolean): "checked" | "unchecked"; export { Switch as Root, SwitchThumb as Thumb };