UNPKG

@arteneo/forge

Version:
13 lines (12 loc) 460 B
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 };