import type { Attack } from "./entity"; /** * Parse a single attack * @param attack a string describing a single attack */ export declare function parseAttack(attack: string): Attack; /** * Parse the attack line of a statblock * Group the attacks based on the "and" and "or" usage * @param attacks A string of attacks * @returns a 2D array of attacks. Each sub-array is a set of attacks * that can all happen on the same turn */ export declare function parseAttacks(attacks: string): Attack[][];