import { type QwikIntrinsicElements, Signal } from "@builder.io/qwik"; type ToggleCustomProps = { /** * The controlled state of the toggle. */ pressed?: 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 */ defaultPressed?: boolean; }; export type ToggleProps = ToggleCustomProps & QwikIntrinsicElements["button"]; export declare const Toggle: import("@builder.io/qwik").Component; export {};