import React from "react";
import { RadioProps } from "../../../components/Form/fields/Radio";
import Optional from "../../../definitions/Optional";
type RadioTrueFalseProps = Optional<RadioProps, "options">;
declare const RadioTrueFalse: {
    (radioProps: RadioTrueFalseProps): React.JSX.Element;
    defaultProps: {
        transformInitialValue: (value: any) => boolean | undefined;
    };
};
export default RadioTrueFalse;
export { RadioTrueFalseProps };
