import * as z from "zod"; export type GetUserEmailsRequest = { username: string; }; /** * success response */ export type GetUserEmailsResponseBody = { associatedAccounts: Array; email: string; secondaryEmails: Array; unconfirmedEmails: Array; }; /** @internal */ export declare const GetUserEmailsRequest$inboundSchema: z.ZodType; /** @internal */ export type GetUserEmailsRequest$Outbound = { username: string; }; /** @internal */ export declare const GetUserEmailsRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetUserEmailsRequest$ { /** @deprecated use `GetUserEmailsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetUserEmailsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetUserEmailsRequest$Outbound` instead. */ type Outbound = GetUserEmailsRequest$Outbound; } /** @internal */ export declare const GetUserEmailsResponseBody$inboundSchema: z.ZodType; /** @internal */ export type GetUserEmailsResponseBody$Outbound = { associated_accounts: Array; email: string; secondary_emails: Array; unconfirmed_emails: Array; }; /** @internal */ export declare const GetUserEmailsResponseBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetUserEmailsResponseBody$ { /** @deprecated use `GetUserEmailsResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetUserEmailsResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetUserEmailsResponseBody$Outbound` instead. */ type Outbound = GetUserEmailsResponseBody$Outbound; } //# sourceMappingURL=getuseremails.d.ts.map