import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type MachinesJoinTokenSummary = { id: string; createdAt: string; createdBy: string; expiresAt?: string | null | undefined; maxJoins?: number | null | undefined; joinCount: number; lastUsedAt?: string | null | undefined; revokedAt?: string | null | undefined; }; /** @internal */ export declare const MachinesJoinTokenSummary$inboundSchema: z.ZodType; export declare function machinesJoinTokenSummaryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=machinesjointokensummary.d.ts.map