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