import React from "react"; import type { ControlledFormValue } from "../../internal/type"; import type { RadioGroupButtonStyle } from "antd/es/radio"; export interface Props extends ControlledFormValue { allowNull?: AllowNull; trueText?: string; falseText?: string; trueOptionFirst?: boolean; useButtonMode?: boolean; buttonStyle?: RadioGroupButtonStyle; disabled?: boolean; className?: string; style?: React.CSSProperties; } export declare const BoolRadio: (props: Props) => React.JSX.Element;