import React from "react"; import { SimpleGridProps } from "@chakra-ui/react"; declare type CGIBoxTypes = { titulo?: string; popover?: string; children: React.ReactNode; Att?: SimpleGridProps; }; /** * @Componente CGIBox - Componente usado para Criar Grids de Layout. * @Util Usado Em Conjunto do CGIBoxItens * */ export declare function CGIBox(props: CGIBoxTypes): JSX.Element; export {};