import { CharacterEvent } from './base/character.event';
import { PS2Events } from '../../stream';
import { Faction } from '../constants';
export declare class FishScan extends CharacterEvent<PS2Events.FishScan> {
    readonly emit = "fishScan";
    readonly event_name: 'FishScan';
    readonly fish_id: string;
    readonly loadout_id: string;
    readonly team_id: Faction;
    toHash(): string;
}
