import * as z from "zod"; /** * Standard error response object */ export type GetApiWorkspaceServiceV1WorkspacesListErrorResponseData = { error: string; code?: string | undefined; details?: any | null | undefined; }; /** * Standard error response object */ export declare class GetApiWorkspaceServiceV1WorkspacesListErrorResponse extends Error { error: string; code?: string | undefined; details?: any | null | undefined; /** The original data that was passed to this error instance. */ data$: GetApiWorkspaceServiceV1WorkspacesListErrorResponseData; constructor(err: GetApiWorkspaceServiceV1WorkspacesListErrorResponseData); } /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesListErrorResponse$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesListErrorResponse$Outbound = { error: string; code?: string | undefined; details?: any | null | undefined; }; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesListErrorResponse$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 GetApiWorkspaceServiceV1WorkspacesListErrorResponse$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesListErrorResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesListErrorResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesListErrorResponse$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesListErrorResponse$Outbound; } //# sourceMappingURL=getapiworkspaceservicev1workspaceslist.d.ts.map