/**
 * Represents a DRM Key System.
 *
 * @group DRM
 * @beta
 */
export type KeySystem = {
    /**
   * The UUID identifying the key system
   */
    uuid: string;
    /**
   * Optional scheme ID URI for the key system
   */
    schemeIdURI?: string;
    /**
   * The system string for the key system,
   * such as `com.widevine.alpha`
   */
    systemString: string;
};
//# sourceMappingURL=KeySystem.d.ts.map