export declare enum EnumFormatoArquivo { PDF = "PDF", XLSX = "XLSX", CSV = "CSV" } export declare enum EnumEmpresasConfiguracaoNome { FANTASIA = "FANTASIA", RAZAO = "RAZAO" } export declare enum EnumTipoRelatorio { ABSENTEISMO = "ABSENTEISMO", COLABORADOR = "COLABORADOR", FOLHA_PONTO = "FOLHA_PONTO", PAUSAS = "PAUSAS", SALDOS = "SALDOS", SALDOS_ACUMULADOS = "SALDOS_ACUMULADOS", AUDITOR_IA_MARCACOES = "AUDITOR_IA_MARCACOES", HISTORICO_RELATORIOS_PONTO_APP = "HISTORICO_RELATORIOS_PONTO_APP" } export declare enum EnumStatusRelatorio { PROCESSANDO = "PROCESSANDO", COMPACTANDO = "COMPACTANDO", GERADO = "GERADO", ERRO = "ERRO" } export interface ExportarRelatorioRequest { tipo: EnumTipoRelatorio; detalhado: boolean; formato: EnumFormatoArquivo; descricao: string; timezone?: string; empresas_configuracao_nome: EnumEmpresasConfiguracaoNome; query: any; } export interface ExportarRelatorioResponse { aguardar_conclusao?: boolean; descricao: string; download_path?: string; formato_arquivo: EnumFormatoArquivo; relatorio_id?: string; status?: EnumStatusRelatorio; tipo: EnumTipoRelatorio; }