import * as React from "react";
import type { FormFieldProps } from "../FormFieldProps";
import type { RadioButtonGroupProps } from "./RadioButtonGroup";
interface BooleanRadioButtonGroupProps extends Omit<RadioButtonGroupProps<string>, keyof FormFieldProps<string>>, FormFieldProps<boolean> {
}
export declare function BooleanRadioButtonGroup({ value, onChange, ...otherProps }: React.PropsWithChildren<BooleanRadioButtonGroupProps>): import("react/jsx-runtime").JSX.Element;
export {};
