/**
 * Player style config
 * @export
 * @class StreamsStyleConfigPlayerStyle
 */
export declare class StreamsStyleConfigPlayerStyle {
    /**
     * Playback marker background color
     * @type {string}
     * @memberof StreamsStyleConfigPlayerStyle
     */
    playbackMarkerBgColor?: string;
    /**
     * Playback marker border color
     * @type {string}
     * @memberof StreamsStyleConfigPlayerStyle
     */
    playbackMarkerBorderColor?: string;
    /**
     * Playback track played color
     * @type {string}
     * @memberof StreamsStyleConfigPlayerStyle
     */
    playbackTrackPlayedColor?: string;
    /**
     * Playback track buffered color
     * @type {string}
     * @memberof StreamsStyleConfigPlayerStyle
     */
    playbackTrackBufferedColor?: string;
    /**
     * Playback track background color
     * @type {string}
     * @memberof StreamsStyleConfigPlayerStyle
     */
    playbackTrackBgColor?: string;
    /**
     * Text color
     * @type {string}
     * @memberof StreamsStyleConfigPlayerStyle
     */
    textColor?: string;
    /**
     * Background color
     * @type {string}
     * @memberof StreamsStyleConfigPlayerStyle
     */
    backgroundColor?: string;
    constructor(obj?: Partial<StreamsStyleConfigPlayerStyle>);
}
export default StreamsStyleConfigPlayerStyle;
