import { PlayerChat } from './definitions/PlayerChat';
import { OHD } from './OHD';
import { Player } from './Player';
export declare class Message {
    created: PlayerChat['time'];
    channel: PlayerChat['channel'];
    steam64: PlayerChat['player_id'];
    message: PlayerChat['message'];
    private _user;
    protected _controller: OHD;
    constructor(controller?: OHD | PlayerChat | null, $b?: PlayerChat);
    get User(): Player | null;
    protected get hasController(): boolean;
}
