import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Optional theme preference for the portal. */ export declare const Theme: { readonly Light: "light"; readonly Dark: "dark"; }; /** * Optional theme preference for the portal. */ export type Theme = ClosedEnum; export type GetTenantPortalUrlRequest = { /** * The ID of the tenant. Required when using AdminApiKey authentication. */ tenantId: string; /** * Optional theme preference for the portal. */ theme?: Theme | undefined; }; /** @internal */ export declare const Theme$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Theme$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetTenantPortalUrlRequest$inboundSchema: z.ZodType; /** @internal */ export type GetTenantPortalUrlRequest$Outbound = { tenant_id: string; theme?: string | undefined; }; /** @internal */ export declare const GetTenantPortalUrlRequest$outboundSchema: z.ZodType; export declare function getTenantPortalUrlRequestToJSON(getTenantPortalUrlRequest: GetTenantPortalUrlRequest): string; export declare function getTenantPortalUrlRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=gettenantportalurl.d.ts.map