import { type QwikIntrinsicElements } from "@builder.io/qwik"; type RadioCustomProps = { /** * The controlled state of the toggle. */ checked?: boolean; /** * 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; value: string; required?: boolean; }; export type RadioProps = RadioCustomProps & QwikIntrinsicElements["button"]; declare const Radio: import("@builder.io/qwik").Component; export type RadioIndicatorProps = {} & QwikIntrinsicElements["span"]; declare const RadioIndicator: import("@builder.io/qwik").Component>; export declare function getState(checked: boolean): "checked" | "unchecked"; export { Radio, RadioIndicator };