import * as z from "zod/v3"; import * as components from "../components/index.js"; import { MoovError } from "./mooverror.js"; export type UpdateIssuedCardErrorData = { state?: string | undefined; memo?: string | undefined; authorizedUser?: components.CreateAuthorizedUserError | undefined; }; export declare class UpdateIssuedCardError extends MoovError { state?: string | undefined; memo?: string | undefined; authorizedUser?: components.CreateAuthorizedUserError | undefined; /** The original data that was passed to this error instance. */ data$: UpdateIssuedCardErrorData; constructor(err: UpdateIssuedCardErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const UpdateIssuedCardError$inboundSchema: z.ZodType; /** @internal */ export type UpdateIssuedCardError$Outbound = { state?: string | undefined; memo?: string | undefined; authorizedUser?: components.CreateAuthorizedUserError$Outbound | undefined; }; /** @internal */ export declare const UpdateIssuedCardError$outboundSchema: z.ZodType; //# sourceMappingURL=updateissuedcarderror.d.ts.map