import { ApiError } from './apiError';
import { CustomTargetingErrorReason } from './customTargetingErrorReason';
export interface CustomTargetingError extends ApiError {
    reason?: CustomTargetingErrorReason;
}
