import * as z from "zod/v3"; export type NuveiPSEOptions = { /** * Customer type ("N" for persona natural, "J" for persona jurídica) */ userType?: string | null | undefined; /** * Customer's document type */ userFisNumber?: string | null | undefined; /** * Customer's document number */ fiscalNumber?: string | null | undefined; /** * The bank code of the selected bank */ bankCode?: string | null | undefined; }; /** @internal */ export type NuveiPSEOptions$Outbound = { userType?: string | null | undefined; userFisNumber?: string | null | undefined; fiscalNumber?: string | null | undefined; bankCode?: string | null | undefined; }; /** @internal */ export declare const NuveiPSEOptions$outboundSchema: z.ZodType; export declare function nuveiPSEOptionsToJSON(nuveiPSEOptions: NuveiPSEOptions): string; //# sourceMappingURL=nuveipseoptions.d.ts.map