import { ApiError } from './apiError';
import { NotNullErrorReason } from './notNullErrorReason';
export interface NotNullError extends ApiError {
    reason?: NotNullErrorReason;
}
