import * as z from "zod"; /** * Standard error response object */ export type PutApiWorkspaceServiceV1WorkspacesErrorResponseData = { error: string; code?: string | undefined; details?: any | null | undefined; }; /** * Standard error response object */ export declare class PutApiWorkspaceServiceV1WorkspacesErrorResponse extends Error { error: string; code?: string | undefined; details?: any | null | undefined; /** The original data that was passed to this error instance. */ data$: PutApiWorkspaceServiceV1WorkspacesErrorResponseData; constructor(err: PutApiWorkspaceServiceV1WorkspacesErrorResponseData); } /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesErrorResponse$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesErrorResponse$Outbound = { error: string; code?: string | undefined; details?: any | null | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesErrorResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiWorkspaceServiceV1WorkspacesErrorResponse$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesErrorResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesErrorResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesErrorResponse$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesErrorResponse$Outbound; } //# sourceMappingURL=putapiworkspaceservicev1workspaces.d.ts.map