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