import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as models from "../index.js"; export type ListBillingAuditLogGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type ListBillingAuditLogRequest = { limit?: number | undefined; /** * Cursor: id from the previous page. */ before?: string | undefined; }; /** * Audit-log rows newest-first. */ export type ListBillingAuditLogResponse = { items: Array; nextCursor: string | null; }; /** @internal */ export type ListBillingAuditLogRequest$Outbound = { limit: number; before?: string | undefined; }; /** @internal */ export declare const ListBillingAuditLogRequest$outboundSchema: z.ZodType; export declare function listBillingAuditLogRequestToJSON(listBillingAuditLogRequest: ListBillingAuditLogRequest): string; /** @internal */ export declare const ListBillingAuditLogResponse$inboundSchema: z.ZodType; export declare function listBillingAuditLogResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listbillingauditlog.d.ts.map