/// import { RadioGroupProps, RadioProps, StackDirection } from "@chakra-ui/react"; import { RegisterOptions } from "react-hook-form"; interface CGIRadioButtonTypes { id: string; row: StackDirection; label: string; values: Array<{ label: string; valor: string; }>; attGroup?: RadioGroupProps; attRadio?: RadioProps; validadores?: RegisterOptions | undefined; } /** * @Componente CGIRadioButton - Radio Button padrão do Sistema * @Ref FormContext * @Form Necessita ser Controlado Por Formulário */ export declare function CGIRadioButton(props: CGIRadioButtonTypes): JSX.Element; export {};