import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TenantToken = { /** * JWT token scoped to the tenant for safe browser API calls. */ token?: string | undefined; /** * The ID of the tenant this token is scoped to. */ tenantId?: string | undefined; }; /** @internal */ export declare const TenantToken$inboundSchema: z.ZodType; /** @internal */ export type TenantToken$Outbound = { token?: string | undefined; tenant_id?: string | undefined; }; /** @internal */ export declare const TenantToken$outboundSchema: z.ZodType; export declare function tenantTokenToJSON(tenantToken: TenantToken): string; export declare function tenantTokenFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=tenanttoken.d.ts.map