import { type tipoResposta } from "p-respostas"; import type { z } from "zod"; import type { tipos_de_acesso_quipo } from "../tokenQuipo"; import type { zAmbiente } from "../ts/ambiente"; export type tipoUsuarioExterno = { nome: string; email: string; telefone: string; vinculo: string; codigo_conta: string; chave_produto: string; codigo: string; cpf: string; }; export declare const usuarios_quipo: ({ token_produto, ambiente, tipo, }: { ambiente: z.infer; token_produto: string; tipo: tipos_de_acesso_quipo; }) => Promise>;