import ErrorCode from './error-code.js'; interface GigyaResponse { callId: string; time: string; errorCode: ErrorCode | number; errorMessage?: string; errorDetails?: string; validationErrors?: Array<{ fieldName: string; message: string; }>; } export type { GigyaResponse, GigyaResponse as default };