export type { tipoUsuarioExterno } from "./_consultaUsuariosexterno"; /** todas as rotas de comunicação com autenticador partem dessa variável */ export declare const pAutenticacao: { validarToken: ({ ambiente, post, buscar, }: { ambiente: "desenvolvimento" | "producao"; post: { token: string; }; buscar: (url: string, post: { token: string; }) => Promise>; }) => Promise<"valido" | "erro">; urlAutenticacao: (ambiente: "desenvolvimento" | "producao") => string; codigoContaSite: ({ ambiente, post, buscar, }: { ambiente: "desenvolvimento" | "producao"; post: { site: string; }; buscar: (url: string, post: { site: string; }) => Promise>; }) => Promise>; consultaUsuariosexterno: ({ token_produto, ambiente, }: { ambiente: "desenvolvimento" | "producao"; token_produto: string; }) => Promise>; };