import { Gun } from "../../gun"; import { FiringState } from "../../firing-state"; import { Owner } from "../../owner"; import { PlayerLike } from "../../player"; /** * Concat guns. * Child guns are played with FiringState without copy. */ export declare class Concat implements Gun { private readonly guns; constructor(...guns: Gun[]); play(owner: Owner, player: PlayerLike, state: FiringState): IterableIterator; }