import { IRayAttack } from '../../../../types';
/**
 * Populates an array of 64 IRayAttacks objects with north-east attacks
 * @param attacksList an IRayAttack array of directional attacks
 * @returns attacksList populated with north-east attacks
 */
export declare function generateNorthEastAttacks(attacksList: IRayAttack[]): IRayAttack[];
