import React from "react"; declare type CGIListarType = { id: string; Titulo: string; children: React.ReactNode; NaoAlterarPermissoes?: boolean; Janelas?: Array<{ Componente: React.ReactNode; }>; }; /** * @Componente CGIListar - Componente usado Para o Listar padrĂ£o do Sistema * @Ref CGIListar */ export declare const CGIListarContext: React.Context; declare function CGIListar(props: CGIListarType): JSX.Element; export { CGIListar }; export default CGIListarContext;