import * as z from "zod/v3"; export type PazeClient = { /** * Client identifier generated by Paze and shared during onboarding. */ id: string; /** * Display name associated with the client for presentation purposes. */ name?: string | null | undefined; /** * Client profile to use during checkout. */ profileId?: string | null | undefined; }; /** @internal */ export type PazeClient$Outbound = { id: string; name?: string | null | undefined; profileId?: string | null | undefined; }; /** @internal */ export declare const PazeClient$outboundSchema: z.ZodType; export declare function pazeClientToJSON(pazeClient: PazeClient): string; //# sourceMappingURL=pazeclient.d.ts.map