import { WeaponClass } from '../enum';
import type { WeaponDamageProperties } from '../types';
import type { Longsword, LongswordAttack } from './types';
export declare const LongswordDamageProperties: Readonly<WeaponDamageProperties<WeaponClass.LONGSWORD, LongswordAttack>>;
/**
 * List of all available {@link Longsword}s
 */
export declare const Longswords: readonly Longsword[];
