/**
 * @export
 * @class StreamMetadata
 */
export declare class StreamMetadata {
    /**
     * Language of the media contained in the stream. If the value is not set, then no metadata tag is set for the media stream.
     * @type {string}
     * @memberof StreamMetadata
     */
    language?: string;
    constructor(obj?: Partial<StreamMetadata>);
}
export default StreamMetadata;
