import React from "react"; import { Omit } from "../_type"; import { CheckProps } from "../check"; import { RadioGroup } from "./RadioGroup"; /** * Radio 组件所接收的属性 */ export interface RadioProps extends Omit { } export declare const Radio: React.FunctionComponent> & { Group: typeof RadioGroup; };