import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdk-validation-error.js"; export type V1LogsReceived = string | number; /** * Response for status 200 */ export type V1LogsResponse = { ok: boolean; received: string | number; }; /** @internal */ export declare const V1LogsReceived$inboundSchema: z.ZodMiniType; export declare function v1LogsReceivedFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const V1LogsResponse$inboundSchema: z.ZodMiniType; export declare function v1LogsResponseFromJSON(jsonString: string): SafeParseResult;