import { DomSanitizer, SafeStyle } from '@angular/platform-browser';
export declare class NbChatMessageComponent {
    private domSanitizer;
    readonly flyInOut: boolean;
    replyValue: boolean;
    readonly notReply: boolean;
    avatarStyle: SafeStyle;
    reply: boolean;
    message: string;
    sender: string;
    date: Date;
    files: {
        url: string;
        icon: string;
    }[];
    quote: string;
    latitude: number;
    longitude: number;
    avatar: string;
    type: string;
    constructor(domSanitizer: DomSanitizer);
    getInitials(): string;
}
