import type { BindableProps } from "../types"; export type ToggleFieldProps = { name?: string; value?: string; } & BindableProps<{ required: boolean; }>; export declare const ToggleField: import("@qwik.dev/core").Component;