import type { tipoResposta } from "p-respostas"; import { z } from "zod"; import { type zp_produto_conta } from "./_variaveis"; /** Faz o registro de uma nova base de dados configurado a estrutura de colunas */ export declare const zp_registrar_base_dados: z.ZodObject<{ tabela: z.ZodString; colunas: z.ZodArray; }, "strip", z.ZodTypeAny, { coluna: string; tipo: "contagem" | "somatoria"; }, { coluna: string; tipo: "contagem" | "somatoria"; }>, "many">; }, "strip", z.ZodTypeAny, { tabela: string; colunas: { coluna: string; tipo: "contagem" | "somatoria"; }[]; }, { tabela: string; colunas: { coluna: string; tipo: "contagem" | "somatoria"; }[]; }>; export declare const registrar_base_dados: ({ emDesenvolvimento, cliente: { conta, produto }, parametros: { colunas, tabela }, }: { emDesenvolvimento?: boolean | undefined | null; /** Identificação do cliente */ cliente: z.infer; /** parametros da função */ parametros: z.infer; }) => Promise>;