/**
 * Valkaru Hound - Fast scout and harassment specialist bred for reconnaissance and hit-and-run tactics
 * T1 light unit with exceptional speed and mobility for battlefield reconnaissance
 */
import { Attack } from "../../../../engine/ability.js";
import { ValkaruMercUnit } from "../../valkaru-classes.js";
import type { Tier, HotKey } from "../../../../engine/core.js";
declare class ValkaruHound extends ValkaruMercUnit {
    uuid: string;
    static src: string;
    readonly name: string;
    readonly tier: Tier;
    readonly hotkey: HotKey;
    readonly hexiteCost: number;
    readonly fluxCost: number;
    readonly buildTime: number;
    readonly buildCount: number;
    readonly attacks: {
        bite: Attack;
    };
    constructor();
}
export default ValkaruHound;
//# sourceMappingURL=valkaru-hound.d.ts.map