import { WeaponClass } from '../enum';
import type { WeaponDamageProperties } from '../types';
import type { GreatSword, GreatSwordAttack } from './types';
export declare const GreatSwordDamageProperties: Readonly<WeaponDamageProperties<WeaponClass.GREAT_SWORD, GreatSwordAttack>>;
/**
 * List of all available {@link GreatSword}s
 */
export declare const GreatSwords: readonly GreatSword[];
