import type { AsChildTypes } from "../types"; import type { BindableProps } from "../types"; import { type PropsOf, type Signal } from "@qwik.dev/core"; export interface ToggleContext { isChecked: Signal; isDisabled: Signal; onChange$?: (checked: boolean) => void; localId: string; isField: Signal; describedByIds: Signal; } export declare const toggleContextId: import("@qwik.dev/core").ContextId; type ToggleBinds = { checked: boolean; disabled: boolean; }; type PublicRootProps = Omit, "onChange$"> & { onChange$?: (checked: boolean) => void; } & BindableProps; export declare const ToggleRoot: import("@qwik.dev/core").Component; export declare const AutomaticField: import("@qwik.dev/core").Component; export {};