import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ApiKeyDto = { /** * API key */ key: string; /** * User ID associated with the API key */ userId: string; /** * Hashed representation of the API key */ hash?: string | undefined; }; /** @internal */ export declare const ApiKeyDto$inboundSchema: z.ZodType; export declare function apiKeyDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=apikeydto.d.ts.map