/**
* Controls how SCTE-35 signals are applied at the DASH period level.
- SINGLE_PERIOD: Applies SCTE markers to a single DASH period.
- MULTI_PERIOD: Multiple periods are created based on received SCTE-35 messages.
* @export
* @enum {string}
*/
export declare enum DashScte35PeriodOption {
SINGLE_PERIOD = "SINGLE_PERIOD",
MULTI_PERIOD = "MULTI_PERIOD"
}
export default DashScte35PeriodOption;