import { Accessor, Component, JSX, Setter } from "solid-js"; import "./base.css"; import "./radio.css"; export declare const radioContext: import("solid-js").Context<[] | [Accessor, Setter, (value: string) => boolean]>; export declare type RadioProps = JSX.HTMLAttributes & { /** * align the checkbox inside its label * can be 'left' or 'right; default is 'left' */ align?: "left" | "right"; autofocus?: boolean; checked?: boolean; setChecked?: (checked?: boolean) => void; disabled?: boolean; name?: string; onInvalid?: JSX.EventHandler; required?: boolean; value?: string; }; export declare const Radio: Component; export declare type RadioGroupProps = JSX.HTMLAttributes & { setValue?: (value: string) => void; value?: Accessor; }; export declare const RadioGroup: Component;