import type { z } from "zod"; import type { visoes } from "../visoes"; export type tipoConstrutorPilao = { produto: string; conta: string; }; export type tipoRetornoSerirconsulta = { registros: any[]; legenda: string; serie: z.infer<(typeof visoes)[T]>; };