/// import { CheckboxProps } from "@chakra-ui/react"; import { RegisterOptions } from "react-hook-form"; interface CGICheckBoxTypes extends CheckboxProps { id: string; label: string; tooltip: string; validadores?: RegisterOptions | undefined; att?: CheckboxProps; } /** * @Componente CGICheckBox - Check Box padrão do Sistema * @Ref FormContext * @Form Necessita ser Controlado Por Formulário */ export declare function CGICheckBox(props: CGICheckBoxTypes): JSX.Element; export {};