export type InterruptionLevel = "passive" | "active" | "time-sensitive" | "critical"; export declare function assertInterruptionLevelValid(interruptionLevel: unknown): asserts interruptionLevel is InterruptionLevel | undefined;