import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { WorkspaceBudget } from "./workspacebudget.js"; export type ListWorkspaceBudgetsResponse = { /** * List of budgets configured for the workspace */ data: Array; /** * Whether BYOK (bring-your-own-key) spend is included when enforcing the workspace's budgets. This is a workspace-wide setting that applies to all budget intervals (daily, weekly, monthly, and lifetime). */ includeByokInBudgets?: boolean | undefined; }; /** @internal */ export declare const ListWorkspaceBudgetsResponse$inboundSchema: z.ZodType; export declare function listWorkspaceBudgetsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listworkspacebudgetsresponse.d.ts.map