import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type BillingAuditLogRow = { id: string; workspaceId: string | null; action: string; payload?: any | null | undefined; createdAt: string; }; /** @internal */ export declare const BillingAuditLogRow$inboundSchema: z.ZodType; export declare function billingAuditLogRowFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=billingauditlogrow.d.ts.map