import type { tipoResposta } from "p-respostas"; import { z } from "zod"; import { type zp_produto_conta } from "./variaveis"; export declare const zp_registrar_base_dados: z.ZodObject<{ tabela: z.ZodString; colunas: z.ZodArray; }, "strip", z.ZodTypeAny, { coluna: string; tipo: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero" | "data" | "mes"; }, { coluna: string; tipo: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero" | "data" | "mes"; }>, "many">; }, "strip", z.ZodTypeAny, { tabela: string; colunas: { coluna: string; tipo: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero" | "data" | "mes"; }[]; }, { tabela: string; colunas: { coluna: string; tipo: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero" | "data" | "mes"; }[]; }>; export declare const zp_enviar_registros: z.ZodObject<{ tabela: z.ZodString; registros: z.ZodArray>>; }, "strip", z.ZodTypeAny, { valor?: any; tipo?: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero" | "data" | "mes" | null | undefined; }, { valor?: any; tipo?: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero" | "data" | "mes" | null | undefined; }>>, "many">; }, "strip", z.ZodTypeAny, { tabela: string; registros: Record[]; }, { tabela: string; registros: Record[]; }>; export declare const enviar_registros: ({ conta, produto, emDesenvolvimento }: z.infer) => ({ registros, tabela, }: z.infer) => Promise>;