/**
 * @export
 * @class StreamsDomainRestrictionResponse
 */
export declare class StreamsDomainRestrictionResponse {
    /**
     * The identifier of the streams domain restriction entity
     * @type {string}
     * @memberof StreamsDomainRestrictionResponse
     */
    id?: string;
    /**
     * The list of allowed domains
     * @type {string[]}
     * @memberof StreamsDomainRestrictionResponse
     */
    allowedDomains?: string[];
    /**
     * Controls if requests to domain restricted streams without referer header should be allowed or denied
     * @type {boolean}
     * @memberof StreamsDomainRestrictionResponse
     */
    allowNoReferer?: boolean;
    /**
     * Controls if Stream is accessible via sharing URL or not
     * @type {boolean}
     * @memberof StreamsDomainRestrictionResponse
     */
    allowShare?: boolean;
    constructor(obj?: Partial<StreamsDomainRestrictionResponse>);
}
export default StreamsDomainRestrictionResponse;
