import { Gun } from "../../gun"; import { FiringState } from "../../firing-state"; import { TConstantOrLazy } from "../../lazyEvaluative"; import { Owner } from "../../owner"; import { PlayerLike } from "../../player"; /** * Wait input frames. */ export declare class Wait implements Gun { private readonly frames; constructor(frames: TConstantOrLazy); play(_owner: Owner, player: PlayerLike, state: FiringState): IterableIterator; }