import { InjectionToken } from '@angular/core';
export declare const CHAT_STYLE_TOKEN: InjectionToken<ChatStyle>;
export interface ChatStyle {
    windowFrame: {
        windowWidth: string;
    };
}
