/**
 * @export
 * @class AppliedStreamSettings
 */
export declare class AppliedStreamSettings {
    /**
     * The applied width. Useful if the width in the configuration was undefined
     * @type {number}
     * @memberof AppliedStreamSettings
     */
    width?: number;
    /**
     * The applied height. Useful if the height in the configuration was undefined
     * @type {number}
     * @memberof AppliedStreamSettings
     */
    height?: number;
    constructor(obj?: Partial<AppliedStreamSettings>);
}
export default AppliedStreamSettings;
