import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type HookdeckCredentials = { /** * Hookdeck authentication token. */ token: string; }; /** @internal */ export declare const HookdeckCredentials$inboundSchema: z.ZodType; /** @internal */ export type HookdeckCredentials$Outbound = { token: string; }; /** @internal */ export declare const HookdeckCredentials$outboundSchema: z.ZodType; export declare function hookdeckCredentialsToJSON(hookdeckCredentials: HookdeckCredentials): string; export declare function hookdeckCredentialsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=hookdeckcredentials.d.ts.map