import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateAuthTokenResponse = { /** * An authentication token that can be passed to any endpoint via Bearer Authentication */ token: string; /** * Unix timestamp for when this token expires (in seconds since epoch UTC). */ expirationTime: number; }; /** @internal */ export declare const CreateAuthTokenResponse$inboundSchema: z.ZodType; export declare function createAuthTokenResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createauthtokenresponse.d.ts.map