import { IComponentProps } from "./common"; import { IRadioBox } from "ave-ui"; export interface IRadioBoxComponentProps extends IComponentProps { text: string; value?: boolean; onCheck?: Parameters[0]; } export declare const RadioBox: import("./common").ReactAveTag;