import { FC } from "react"; interface WeUIFormRadioProps { label: string; value: string; checked: boolean; name: string; } export declare const WeUIFormRadio: FC; export {};