import { ApiError } from './apiError';
import { ReportErrorReason } from './reportErrorReason';
export interface ReportError extends ApiError {
    reason?: ReportErrorReason;
}
