import StreamKeyConfigurationType from './StreamKeyConfigurationType';
/**
 * @export
 * @class StreamKeyConfiguration
 */
export declare class StreamKeyConfiguration {
    /**
     * @type {StreamKeyConfigurationType}
     * @memberof StreamKeyConfiguration
     */
    type?: StreamKeyConfigurationType;
    /**
     * Id of the previously generated stream key.  Only needed when the type is `ASSIGN`.
     * @type {string}
     * @memberof StreamKeyConfiguration
     */
    streamKeyId?: string;
    constructor(obj?: Partial<StreamKeyConfiguration>);
}
export default StreamKeyConfiguration;
