import * as z from "zod/v4"; import { ClosedEnum } from "../../types/enums.js"; export type ConfigureProjectBucketsGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export declare const ConfigureProjectBucketsAccess: { readonly ReadWrite: "read-write"; }; export type ConfigureProjectBucketsAccess = ClosedEnum; export type ConfigureProjectBucketsRequestBody = { access: ConfigureProjectBucketsAccess; }; export type ConfigureProjectBucketsRequest = { /** * Project ID or name. */ idOrName: string; requestBody?: ConfigureProjectBucketsRequestBody | undefined; }; /** @internal */ export declare const ConfigureProjectBucketsAccess$outboundSchema: z.ZodEnum; /** @internal */ export type ConfigureProjectBucketsRequestBody$Outbound = { access: string; }; /** @internal */ export declare const ConfigureProjectBucketsRequestBody$outboundSchema: z.ZodType; export declare function configureProjectBucketsRequestBodyToJSON(configureProjectBucketsRequestBody: ConfigureProjectBucketsRequestBody): string; /** @internal */ export type ConfigureProjectBucketsRequest$Outbound = { idOrName: string; RequestBody?: ConfigureProjectBucketsRequestBody$Outbound | undefined; }; /** @internal */ export declare const ConfigureProjectBucketsRequest$outboundSchema: z.ZodType; export declare function configureProjectBucketsRequestToJSON(configureProjectBucketsRequest: ConfigureProjectBucketsRequest): string; //# sourceMappingURL=configureprojectbuckets.d.ts.map