export interface ApiException { code: number; message: string; exceptionType: ApiExceptionType; translationKey?: string; body?: any; } export declare enum ApiExceptionType { Default = 0, UserDecision = 1 } //# sourceMappingURL=apiException.d.ts.map