import StreamsStyleConfigPlayerStyle from './StreamsStyleConfigPlayerStyle';
/**
 * @export
 * @class StreamsStyleConfigResponse
 */
export declare class StreamsStyleConfigResponse {
    /**
     * The identifier of the style config
     * @type {string}
     * @memberof StreamsStyleConfigResponse
     */
    id?: string;
    /**
     * UUID of the associated organization
     * @type {string}
     * @memberof StreamsStyleConfigResponse
     */
    orgId?: string;
    /**
     * @type {StreamsStyleConfigPlayerStyle}
     * @memberof StreamsStyleConfigResponse
     */
    playerStyle?: StreamsStyleConfigPlayerStyle;
    /**
     * URL of the watermark image
     * @type {string}
     * @memberof StreamsStyleConfigResponse
     */
    watermarkUrl?: string;
    /**
     * Target link of the watermark image
     * @type {string}
     * @memberof StreamsStyleConfigResponse
     */
    watermarkTargetLink?: string;
    constructor(obj?: Partial<StreamsStyleConfigResponse>);
}
export default StreamsStyleConfigResponse;
